Skip to content

Commit 0db72c2

Browse files
committed
feat: highlight undercurl only for spell groups
fixes #103
1 parent d3ffead commit 0db72c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lua/cyberdream/extensions/base.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ function M.get(opts, t)
5353
IncSearch = { fg = t.bgAlt, bg = t.cyan },
5454
CurSearch = { fg = t.bgAlt, bg = t.cyan },
5555
SpecialKey = { fg = t.grey },
56-
SpellBad = { fg = t.red, undercurl = true },
57-
SpellCap = { fg = t.yellow, undercurl = true },
58-
SpellLocal = { fg = t.blue, undercurl = true },
59-
SpellRare = { fg = t.purple, undercurl = true },
56+
SpellBad = { sp = t.red, undercurl = true },
57+
SpellCap = { sp = t.yellow, undercurl = true },
58+
SpellLocal = { sp = t.blue, undercurl = true },
59+
SpellRare = { sp = t.purple, undercurl = true },
6060
StatusLine = { fg = t.fg, bg = t.bg },
6161
StatusLineNC = { fg = t.grey, bg = t.bg },
6262
TabLine = { fg = t.grey, bg = t.bg },

0 commit comments

Comments
 (0)