diff options
| -rw-r--r-- | lua/no-clown-fiesta/highlights.lua | 7 | 
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 },  |