diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 01:56:03 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 01:56:03 +0200 |
commit | 40a163d136073518c4364ebbec388917772bc604 (patch) | |
tree | 517909f1fb75537a3e025367896b2994af6ac521 /lua | |
parent | cdb1fb4c46b8811a44516c84397f2f668bf658d9 (diff) |
Remove lsp underline except for error
Diffstat (limited to 'lua')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/lsp.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/lsp.lua b/lua/no-clown-fiesta/highlight-group/lsp.lua index ba3f5e5..e6b7e3e 100644 --- a/lua/no-clown-fiesta/highlight-group/lsp.lua +++ b/lua/no-clown-fiesta/highlight-group/lsp.lua @@ -32,11 +32,11 @@ function M.highlight(palette) LspDiagnosticsInformation = { fg = palette.info_yellow }, LspDiagnosticsInfo = { fg = palette.info_yellow }, LspDiagnosticsHint = { fg = palette.hint_blue }, - LspDiagnosticsUnderlineError = { style = "underline" }, - LspDiagnosticsUnderlineWarning = { style = "underline" }, - LspDiagnosticsUnderlineInformation = { style = "underline" }, - LspDiagnosticsUnderlineInfo = { style = "underline" }, - LspDiagnosticsUnderlineHint = { style = "underline" }, + LspDiagnosticsUnderlineError = { fg = palette.error_red, style = "underline" }, + LspDiagnosticsUnderlineWarning = {}, + LspDiagnosticsUnderlineInformation = {}, + LspDiagnosticsUnderlineInfo = {}, + LspDiagnosticsUnderlineHint = {}, LspReferenceRead = { bg = "#36383F" }, LspReferenceText = { bg = "#36383F" }, LspReferenceWrite = { bg = "#36383f" }, |