nvim: Use new fancy built-in diagnostics
This commit is contained in:
parent
7a40103f75
commit
8f1ef592cd
3 changed files with 32 additions and 44 deletions
home/common/nvim/dieter/lua/dieter
|
@ -149,14 +149,17 @@ local setupGroups = function(c)
|
|||
CursorLine = { bg = c.highlight_subtle },
|
||||
|
||||
DiagnosticError = { fg = c.diagnostic_error, italic = true },
|
||||
DiagnosticHint = { fg = c.diagnostic_hint, italic = true },
|
||||
DiagnosticInfo = { fg = c.diagnostic_info, italic = true },
|
||||
DiagnosticWarn = { fg = c.diagnostic_warn, italic = true },
|
||||
DiagnosticFloatingError = { fg = c.diagnostic_error, bg = c.popup_error_bg },
|
||||
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 },
|
||||
DiagnosticFloatingInfo = { fg = c.diagnostic_info, bg = c.popup_info_bg },
|
||||
DiagnosticFloatingWarn = { fg = c.diagnostic_warning, bg = c.popup_warning_bg },
|
||||
DiagnosticUnderlineError = { fg = c.foreground, undercurl = true, sp = c.diagnostic_error },
|
||||
DiagnosticUnderlineWarn = { fg = c.foreground, undercurl = true, sp = c.diagnostic_warn },
|
||||
DiagnosticUnderlineHint = { fg = c.foreground, undercurl = true, sp = c.diagnostic_hint },
|
||||
DiagnosticUnderlineInfo = { fg = c.foreground, undercurl = true, sp = c.diagnostic_info },
|
||||
DiagnosticUnderlinehint = { fg = c.foreground, undercurl = true, sp = c.diagnostic_hint },
|
||||
DiagnosticUnderlineWarn = { fg = c.foreground, undercurl = true, sp = c.diagnostic_warn },
|
||||
|
||||
DiagnosticSignError = { fg = c.diagnostic_error },
|
||||
DiagnosticSignHint = { fg = c.diagnostic_hint },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue