summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-15 00:43:20 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-15 00:43:20 +0200
commit4d2e3a9b96e5dd91d518e9a13d3f533944c402d2 (patch)
tree41f3d373cf4c32b4746a1eb1329a3dad72a50c1c
parent42b2cd63272593a2e79bf7c381c7835ea7d03ae6 (diff)
Fix underline diagnostic name typo
-rw-r--r--lua/no-clown-fiesta/highlight-group/lsp.lua8
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 825c041..9f1e263 100644
--- a/lua/no-clown-fiesta/highlight-group/lsp.lua
+++ b/lua/no-clown-fiesta/highlight-group/lsp.lua
@@ -46,13 +46,13 @@ function M.highlight(palette)
},
LspDiagnosticsUnderlineInfo = { sp = palette.hint_blue, style = "undercurl" },
LspDiagnosticsUnderlineHint = { sp = palette.hint_blue, style = "undercurl" },
- DiagnosticsUnderlineError = {
+ DiagnosticUnderlineError = {
sp = palette.error_red,
style = "underline",
},
- DiagnosticsUnderlineWarn = { sp = palette.warning_orange, style = "undercurl" },
- DiagnosticsUnderlineInfo = { sp = palette.hint_blue, style = "undercurl" },
- DiagnosticsUnderlineHint = { sp = palette.hint_blue, style = "undercurl" },
+ DiagnosticUnderlineWarn = { sp = palette.warning_orange, style = "undercurl" },
+ DiagnosticUnderlineInfo = { sp = palette.hint_blue, style = "undercurl" },
+ DiagnosticUnderlineHint = { sp = palette.hint_blue, style = "undercurl" },
LspReferenceRead = { bg = "#36383F" },
LspReferenceText = { bg = "#36383F" },
LspReferenceWrite = { bg = "#36383f" },