diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-15 00:43:20 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-15 00:43:20 +0200 |
commit | 4d2e3a9b96e5dd91d518e9a13d3f533944c402d2 (patch) | |
tree | 41f3d373cf4c32b4746a1eb1329a3dad72a50c1c /lua/no-clown-fiesta/highlight-group/lsp.lua | |
parent | 42b2cd63272593a2e79bf7c381c7835ea7d03ae6 (diff) |
Fix underline diagnostic name typo
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 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" }, |