diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 02:24:38 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-14 02:24:38 +0200 |
commit | e597e1db245ea674c69357b57f9f402993aa4d60 (patch) | |
tree | 3fa612db12f851fe68bcf230cdff5f038dadb936 /lua/no-clown-fiesta/highlight-group | |
parent | 9ec65947f9c5812943b60d78181f46bb7f47c752 (diff) |
Add diagnostic underline groups
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/lsp.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/lsp.lua b/lua/no-clown-fiesta/highlight-group/lsp.lua index 631191c..2aefcca 100644 --- a/lua/no-clown-fiesta/highlight-group/lsp.lua +++ b/lua/no-clown-fiesta/highlight-group/lsp.lua @@ -37,6 +37,10 @@ function M.highlight(palette) LspDiagnosticsUnderlineInformation = { style = "NONE" }, LspDiagnosticsUnderlineInfo = { style = "NONE" }, LspDiagnosticsUnderlineHint = { style = "NONE" }, + DiagnosticsUnderlineError = { sp = palette.error_red, style = "underline" }, + DiagnosticsUnderlineWarn = { style = "NONE" }, + DiagnosticsUnderlineInfo = { style = "NONE" }, + DiagnosticsUnderlineHint = { style = "NONE" }, LspReferenceRead = { bg = "#36383F" }, LspReferenceText = { bg = "#36383F" }, LspReferenceWrite = { bg = "#36383f" }, |