diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-13 00:27:36 +0200 | 
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-13 00:27:36 +0200 | 
| commit | 0285d0668c7963c69c92cb315cccfd9657f9893a (patch) | |
| tree | 067b631e80541d8d505ab2734f478a78874f5e17 | |
| parent | 2b632035d638cc2fdf81421606323622561a72ba (diff) | |
Add undercurl for spell bad
| -rw-r--r-- | lua/no-clown-fiesta/highlights.lua | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lua/no-clown-fiesta/highlights.lua b/lua/no-clown-fiesta/highlights.lua index 0085abc..68ed3f9 100644 --- a/lua/no-clown-fiesta/highlights.lua +++ b/lua/no-clown-fiesta/highlights.lua @@ -7,7 +7,7 @@ function M.highlight(palette, opts)      MsgArea = { fg = palette.fg, bg = palette.bg },      ModeMsg = { fg = palette.fg, bg = palette.bg },      MsgSeparator = { fg = palette.fg, bg = palette.bg }, -    SpellBad = { fg = palette.error_red, style = "underline" }, +    SpellBad = { sp = palette.error_red, undercurl = true },      SpellCap = { fg = palette.yellow, style = "underline" },      SpellLocal = { fg = palette.green, style = "underline" },      SpellRare = { fg = palette.purple, style = "underline" }, |