diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 02:19:05 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 02:19:05 +0200 |
commit | 87f643af9cb4f6000f3a5682ce1671a38ff25c53 (patch) | |
tree | 1acbfecad43e40d4660061bbf641dfe37ffe2ee1 /lua/no-clown-fiesta/highlight-group | |
parent | 68f6d4f0c62b662f8946933e986db1b16d9ba232 (diff) |
Reset underline lsp
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 3ec773d..40b4cd3 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.h }, LspDiagnosticsUnderlineError = { style = "underline" }, - LspDiagnosticsUnderlineWarning = { style = "NONE" }, - LspDiagnosticsUnderlineInformation = { style = "NONE" }, - LspDiagnosticsUnderlineInfo = { style = "NONE" }, - LspDiagnosticsUnderlineHint = { style = "NONE" }, + LspDiagnosticsUnderlineWarning = { style = "underline" }, + LspDiagnosticsUnderlineInformation = { style = "underline" }, + LspDiagnosticsUnderlineInfo = { style = "underline" }, + LspDiagnosticsUnderlineHint = { style = "underline" }, LspReferenceRead = { bg = "#36383F" }, LspReferenceText = { bg = "#36383F" }, LspReferenceWrite = { bg = "#36383f" }, |