diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 02:36:11 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 02:36:11 +0200 |
commit | 0fa14d474fb993dd509a214dfd282db1ea0c621e (patch) | |
tree | 3422d4535784af6b9ac6c2eec3e8cbda6b643750 /lua | |
parent | 98746336176bdccbc893268779671850137e111a (diff) |
Revert some attempts
Diffstat (limited to 'lua')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/lsp.lua | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/lsp.lua b/lua/no-clown-fiesta/highlight-group/lsp.lua index c6ff57b..ef07a68 100644 --- a/lua/no-clown-fiesta/highlight-group/lsp.lua +++ b/lua/no-clown-fiesta/highlight-group/lsp.lua @@ -33,24 +33,18 @@ function M.highlight(palette) LspDiagnosticsInfo = { fg = palette.info_yellow }, LspDiagnosticsHint = { fg = palette.hint_blue }, LspDiagnosticsUnderlineError = { - fg = "NONE", - bg = "NONE", - sp = palette.error_red, style = "undercurl", }, - LspDiagnosticsUnderlineWarning = { sp = nil, bg = "NONE", style = "NONE" }, - LspDiagnosticsUnderlineInformation = { sp = nil, bg = "NONE", style = "NONE" }, - LspDiagnosticsUnderlineInfo = { sp = nil, bg = "NONE", style = "NONE" }, - LspDiagnosticsUnderlineHint = { fg = "NONE", bg = "NONE", style = "NONE" }, + LspDiagnosticsUnderlineWarning = { style = "NONE" }, + LspDiagnosticsUnderlineInformation = { style = "NONE" }, + LspDiagnosticsUnderlineInfo = { style = "NONE" }, + LspDiagnosticsUnderlineHint = { style = "NONE" }, DiagnosticsUnderlineError = { - fg = "NONE", - bg = "NONE", - sp = palette.error_red, style = "underline", }, - DiagnosticsUnderlineWarn = { fg = "NONE", bg = "NONE", style = "NONE" }, - DiagnosticsUnderlineInfo = { sp = nil, bg = "NONE", style = "NONE" }, - DiagnosticsUnderlineHint = { fg = "NONE", bg = "NONE", style = "NONE" }, + DiagnosticsUnderlineWarn = { style = "NONE" }, + DiagnosticsUnderlineInfo = { style = "NONE" }, + DiagnosticsUnderlineHint = { style = "NONE" }, LspReferenceRead = { bg = "#36383F" }, LspReferenceText = { bg = "#36383F" }, LspReferenceWrite = { bg = "#36383f" }, |