summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-14 02:24:38 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-14 02:24:38 +0200
commite597e1db245ea674c69357b57f9f402993aa4d60 (patch)
tree3fa612db12f851fe68bcf230cdff5f038dadb936
parent9ec65947f9c5812943b60d78181f46bb7f47c752 (diff)
Add diagnostic underline groups
-rw-r--r--lua/no-clown-fiesta/highlight-group/lsp.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/lsp.lua b/lua/no-clown-fiesta/highlight-group/lsp.lua
index 631191c..2aefcca 100644
--- a/lua/no-clown-fiesta/highlight-group/lsp.lua
+++ b/lua/no-clown-fiesta/highlight-group/lsp.lua
@@ -37,6 +37,10 @@ function M.highlight(palette)
LspDiagnosticsUnderlineInformation = { style = "NONE" },
LspDiagnosticsUnderlineInfo = { style = "NONE" },
LspDiagnosticsUnderlineHint = { style = "NONE" },
+ DiagnosticsUnderlineError = { sp = palette.error_red, style = "underline" },
+ DiagnosticsUnderlineWarn = { style = "NONE" },
+ DiagnosticsUnderlineInfo = { style = "NONE" },
+ DiagnosticsUnderlineHint = { style = "NONE" },
LspReferenceRead = { bg = "#36383F" },
LspReferenceText = { bg = "#36383F" },
LspReferenceWrite = { bg = "#36383f" },