diff options
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/lsp.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/lsp.lua b/lua/no-clown-fiesta/highlight-group/lsp.lua index 825c041..9f1e263 100644 --- a/lua/no-clown-fiesta/highlight-group/lsp.lua +++ b/lua/no-clown-fiesta/highlight-group/lsp.lua @@ -46,13 +46,13 @@ function M.highlight(palette) }, LspDiagnosticsUnderlineInfo = { sp = palette.hint_blue, style = "undercurl" }, LspDiagnosticsUnderlineHint = { sp = palette.hint_blue, style = "undercurl" }, - DiagnosticsUnderlineError = { + DiagnosticUnderlineError = { sp = palette.error_red, style = "underline", }, - DiagnosticsUnderlineWarn = { sp = palette.warning_orange, style = "undercurl" }, - DiagnosticsUnderlineInfo = { sp = palette.hint_blue, style = "undercurl" }, - DiagnosticsUnderlineHint = { sp = palette.hint_blue, style = "undercurl" }, + DiagnosticUnderlineWarn = { sp = palette.warning_orange, style = "undercurl" }, + DiagnosticUnderlineInfo = { sp = palette.hint_blue, style = "undercurl" }, + DiagnosticUnderlineHint = { sp = palette.hint_blue, style = "undercurl" }, LspReferenceRead = { bg = "#36383F" }, LspReferenceText = { bg = "#36383F" }, LspReferenceWrite = { bg = "#36383f" }, |