diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-29 14:05:46 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-29 14:05:46 +0200 |
commit | e56ad93c23674f6677145a1f8933e02c807ba5d0 (patch) | |
tree | 9c073b000118d0d4c933f3010890d500ed277ab7 /lua/no-clown-fiesta/highlight-group/lsp.lua | |
parent | 95805b36e4cb70b5c87cdc76e5bd384830a41cbe (diff) |
Remove style field
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 daf87f9..5ebfc34 100644 --- a/lua/no-clown-fiesta/highlight-group/lsp.lua +++ b/lua/no-clown-fiesta/highlight-group/lsp.lua @@ -35,11 +35,11 @@ function M.highlight(palette) LspDiagnosticsHint = { fg = palette.hint_blue }, DiagnosticUnderlineError = { sp = palette.error_red, - style = "undercurl", + undercurl = true, }, - DiagnosticUnderlineWarn = { sp = palette.warning_orange, style = "NONE" }, - DiagnosticUnderlineInfo = { sp = palette.hint_blue, style = "NONE" }, - DiagnosticUnderlineHint = { sp = palette.hint_blue, style = "NONE" }, + DiagnosticUnderlineWarn = { sp = palette.warning_orange }, + DiagnosticUnderlineInfo = { sp = palette.hint_blue }, + DiagnosticUnderlineHint = { sp = palette.hint_blue }, LspReferenceRead = { bg = "#36383F" }, LspReferenceText = { bg = "#36383F" }, LspReferenceWrite = { bg = "#36383f" }, |