diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 02:22:13 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 02:22:13 +0200 |
commit | 9ec65947f9c5812943b60d78181f46bb7f47c752 (patch) | |
tree | c394dd8e81418c130ad3ee34f25065f152ebcae7 /lua/no-clown-fiesta | |
parent | 87f643af9cb4f6000f3a5682ce1671a38ff25c53 (diff) |
Fix typo
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/lsp.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/lsp.lua b/lua/no-clown-fiesta/highlight-group/lsp.lua index 40b4cd3..631191c 100644 --- a/lua/no-clown-fiesta/highlight-group/lsp.lua +++ b/lua/no-clown-fiesta/highlight-group/lsp.lua @@ -31,12 +31,12 @@ function M.highlight(palette) LspDiagnosticsWarning = { fg = palette.warning_orange }, LspDiagnosticsInformation = { fg = palette.info_yellow }, LspDiagnosticsInfo = { fg = palette.info_yellow }, - LspDiagnosticsHint = { fg = palette.h }, - LspDiagnosticsUnderlineError = { style = "underline" }, - LspDiagnosticsUnderlineWarning = { style = "underline" }, - LspDiagnosticsUnderlineInformation = { style = "underline" }, - LspDiagnosticsUnderlineInfo = { style = "underline" }, - LspDiagnosticsUnderlineHint = { style = "underline" }, + LspDiagnosticsHint = { fg = palette.hint_blue }, + LspDiagnosticsUnderlineError = { sp = palette.error_red, style = "underline" }, + LspDiagnosticsUnderlineWarning = { style = "NONE" }, + LspDiagnosticsUnderlineInformation = { style = "NONE" }, + LspDiagnosticsUnderlineInfo = { style = "NONE" }, + LspDiagnosticsUnderlineHint = { style = "NONE" }, LspReferenceRead = { bg = "#36383F" }, LspReferenceText = { bg = "#36383F" }, LspReferenceWrite = { bg = "#36383f" }, |