summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-14 01:11:16 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-14 01:11:16 +0200
commit3861d23b13e83f3655ceb3591ff368191dcb018e (patch)
tree317bbfbe3571e205a081ce3a557260f00335afe6
parent972db6ecc34792e19f98e1b621f61394411dbe77 (diff)
Update spells with undercurl
-rw-r--r--lua/no-clown-fiesta/highlights.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/lua/no-clown-fiesta/highlights.lua b/lua/no-clown-fiesta/highlights.lua
index 39ab824..9917859 100644
--- a/lua/no-clown-fiesta/highlights.lua
+++ b/lua/no-clown-fiesta/highlights.lua
@@ -8,9 +8,9 @@ function M.highlight(palette, opts)
ModeMsg = { fg = palette.fg, bg = palette.bg },
MsgSeparator = { fg = palette.fg, bg = palette.bg },
SpellBad = { sp = palette.error_red, style = "undercurl" },
- SpellCap = { fg = palette.yellow, style = "underline" },
- SpellLocal = { fg = palette.green, style = "underline" },
- SpellRare = { fg = palette.purple, style = "underline" },
+ SpellCap = { sp = palette.yellow, style = "undercurl" },
+ SpellLocal = { sp = palette.green, style = "undercurl" },
+ SpellRare = { sp = palette.purple, style = "undercurl" },
NormalNC = { fg = palette.fg, bg = palette.bg },
Pmenu = { fg = palette.light_gray, bg = palette.accent },
PmenuSel = { fg = palette.blue, bg = palette.alt_bg },
@@ -34,7 +34,6 @@ function M.highlight(palette, opts)
DiffChange = {
fg = palette.alt_bg,
bg = palette.sign_change,
- style = "underline",
},
DiffDelete = { fg = palette.alt_bg, bg = palette.sign_delete },
QuickFixLine = { bg = palette.accent },