diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 02:06:53 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 02:06:53 +0200 |
commit | e238c0588644e82a130ae16b2516ebe96b86e256 (patch) | |
tree | 843f7e5f54065a6d4c43da204bed03d0e3a3ad16 /lua/no-clown-fiesta/highlight-group/lsp.lua | |
parent | e48c27a539cc20f58b862439b6f2cfb2919e33a4 (diff) |
Add value for sp
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group/lsp.lua')
-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 909fef5..fea0bc3 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 = { sp = palette.error_red, style = "underline" }, - LspDiagnosticsUnderlineWarning = { sp = nil, style = "NONE" }, - LspDiagnosticsUnderlineInformation = { sp = nil, style = "NONE" }, - LspDiagnosticsUnderlineInfo = { sp = nil, style = "NONE" }, - LspDiagnosticsUnderlineHint = { sp = nil, style = "NONE" }, + LspDiagnosticsUnderlineWarning = { sp = palette.warning_orange, style = "NONE" }, + LspDiagnosticsUnderlineInformation = { sp = palette.info_yellow, style = "NONE" }, + LspDiagnosticsUnderlineInfo = { sp = palette.info_yellow, style = "NONE" }, + LspDiagnosticsUnderlineHint = { sp = palette.hint_blue, style = "NONE" }, LspReferenceRead = { bg = "#36383F" }, LspReferenceText = { bg = "#36383F" }, LspReferenceWrite = { bg = "#36383f" }, |