summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-14 01:59:11 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-14 01:59:11 +0200
commitf420c31bf4c51ef1674a6f02878f80c229cfcc46 (patch)
tree849dda8fc89f3134ba3405d9186f3fa86c458dd8
parent40a163d136073518c4364ebbec388917772bc604 (diff)
Add style none for lsp underline
-rw-r--r--lua/no-clown-fiesta/highlight-group/lsp.lua8
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 e6b7e3e..cca2cc5 100644
--- a/lua/no-clown-fiesta/highlight-group/lsp.lua
+++ b/lua/no-clown-fiesta/highlight-group/lsp.lua
@@ -33,10 +33,10 @@ function M.highlight(palette)
LspDiagnosticsInfo = { fg = palette.info_yellow },
LspDiagnosticsHint = { fg = palette.hint_blue },
LspDiagnosticsUnderlineError = { fg = palette.error_red, style = "underline" },
- LspDiagnosticsUnderlineWarning = {},
- LspDiagnosticsUnderlineInformation = {},
- LspDiagnosticsUnderlineInfo = {},
- LspDiagnosticsUnderlineHint = {},
+ LspDiagnosticsUnderlineWarning = { style = "NONE" },
+ LspDiagnosticsUnderlineInformation = { style = "NONE" },
+ LspDiagnosticsUnderlineInfo = { style = "NONE" },
+ LspDiagnosticsUnderlineHint = { style = "NONE" },
LspReferenceRead = { bg = "#36383F" },
LspReferenceText = { bg = "#36383F" },
LspReferenceWrite = { bg = "#36383f" },