add statusline diagnostic highlights

This commit is contained in:
mvllow 2022-02-07 15:45:04 -06:00
commit d5465b1baa

View file

@ -175,6 +175,10 @@ function M.get(config)
DiagnosticSignHint = { fg = groups.hint },
DiagnosticSignInfo = { fg = groups.info },
DiagnosticSignWarn = { fg = groups.warn },
DiagnosticStatusLineError = { fg = groups.error, bg = p.surface },
DiagnosticStatusLineHint = { fg = groups.hint, bg = p.surface },
DiagnosticStatusLineInfo = { fg = groups.info, bg = p.surface },
DiagnosticStatusLineWarn = { fg = groups.warn, bg = p.surface },
DiagnosticUnderlineError = { sp = groups.error, style = 'undercurl' },
DiagnosticUnderlineHint = { sp = groups.hint, style = 'undercurl' },
DiagnosticUnderlineInfo = { sp = groups.info, style = 'undercurl' },