Skip to content

Commit

Permalink
feat: highlight undercurl only for spell groups
Browse files Browse the repository at this point in the history
fixes #103
  • Loading branch information
scottmckendry committed Jul 27, 2024
1 parent d3ffead commit 0db72c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/cyberdream/extensions/base.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ function M.get(opts, t)
IncSearch = { fg = t.bgAlt, bg = t.cyan },
CurSearch = { fg = t.bgAlt, bg = t.cyan },
SpecialKey = { fg = t.grey },
SpellBad = { fg = t.red, undercurl = true },
SpellCap = { fg = t.yellow, undercurl = true },
SpellLocal = { fg = t.blue, undercurl = true },
SpellRare = { fg = t.purple, undercurl = true },
SpellBad = { sp = t.red, undercurl = true },
SpellCap = { sp = t.yellow, undercurl = true },
SpellLocal = { sp = t.blue, undercurl = true },
SpellRare = { sp = t.purple, undercurl = true },
StatusLine = { fg = t.fg, bg = t.bg },
StatusLineNC = { fg = t.grey, bg = t.bg },
TabLine = { fg = t.grey, bg = t.bg },
Expand Down

0 comments on commit 0db72c2

Please sign in to comment.