nvim: just color underlines for diagnostics
This commit is contained in:
parent
7e89879ae9
commit
70fec1c1f1
1 changed files with 4 additions and 4 deletions
|
@ -148,10 +148,10 @@ local setupGroups = function(c)
|
|||
DiagnosticFloatingWarn = { fg = c.diagnostic_warning, bg = c.popup_warning_bg },
|
||||
DiagnosticFloatingInfo = { fg = c.diagnostic_info, bg = c.popup_info_bg },
|
||||
DiagnosticFloatingHint = { fg = c.diagnostic_hint, bg = c.popup_hint_bg },
|
||||
DiagnosticUnderlineError = { fg = c.diagnostic_error, undercurl = true },
|
||||
DiagnosticUnderlineWarn = { fg = c.diagnostic_warn, undercurl = true },
|
||||
DiagnosticUnderlineInfo = { fg = c.diagnostic_info, undercurl = true },
|
||||
DiagnosticUnderlinehint = { fg = c.diagnostic_hint, undercurl = true },
|
||||
DiagnosticUnderlineError = { fg = c.foreground, undercurl = true, sp = c.diagnostic_error },
|
||||
DiagnosticUnderlineWarn = { fg = c.foreground, undercurl = true, sp = c.diagnostic_warn },
|
||||
DiagnosticUnderlineInfo = { fg = c.foreground, undercurl = true, sp = c.diagnostic_info },
|
||||
DiagnosticUnderlinehint = { fg = c.foreground, undercurl = true, sp = c.diagnostic_hint },
|
||||
|
||||
DiagnosticSignError = { fg = c.diagnostic_error },
|
||||
DiagnosticSignHint = { fg = c.diagnostic_hint },
|
||||
|
|
Loading…
Reference in a new issue