Skip to content

Commit

Permalink
Merge pull request #149 from aymanbagabas/spell
Browse files Browse the repository at this point in the history
fix(spell): only underline spell words
  • Loading branch information
navarasu authored Aug 7, 2023
2 parents f8b3f90 + 70069f4 commit 09b71d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/onedark/highlights.lua
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ hl.common = {
WildMenu = {fg = c.bg0, bg = c.blue},
PmenuThumb = {fg = c.none, bg = c.grey},
Question = {fg = c.yellow},
SpellBad = {fg = c.red, fmt = "underline", sp = c.red},
SpellCap = {fg = c.yellow, fmt = "underline", sp = c.yellow},
SpellLocal = {fg = c.blue, fmt = "underline", sp = c.blue},
SpellRare = {fg = c.purple, fmt = "underline", sp = c.purple},
SpellBad = {fg = c.none, fmt = "undercurl", sp = c.red},
SpellCap = {fg = c.none, fmt = "undercurl", sp = c.yellow},
SpellLocal = {fg = c.none, fmt = "undercurl", sp = c.blue},
SpellRare = {fg = c.none, fmt = "undercurl", sp = c.purple},
StatusLine = {fg = c.fg, bg = c.bg2},
StatusLineTerm = {fg = c.fg, bg = c.bg2},
StatusLineNC = {fg = c.grey, bg = c.bg1},
Expand Down

0 comments on commit 09b71d8

Please sign in to comment.