summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-14 02:22:13 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-14 02:22:13 +0200
commit9ec65947f9c5812943b60d78181f46bb7f47c752 (patch)
treec394dd8e81418c130ad3ee34f25065f152ebcae7
parent87f643af9cb4f6000f3a5682ce1671a38ff25c53 (diff)
Fix typo
-rw-r--r--lua/no-clown-fiesta/highlight-group/lsp.lua12
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" },