diff options
author | Fausto Núñez Alberro <fausto.nunez@mailbox.org> | 2021-02-06 00:43:18 +0100 |
---|---|---|
committer | Fausto Núñez Alberro <fausto.nunez@mailbox.org> | 2021-02-06 00:43:18 +0100 |
commit | 9cfb4ca4db6ca39588930d5635273b22ca43d66f (patch) | |
tree | d2feae5018c2b06bfbcc1791de69173615347ce8 /colors/base16-tomorrow-night.vim | |
parent | cd0369a8434981b42413391d38a51ef2f741395c (diff) |
Highlight Spell{Bad,Local,Cap,Rare} consistently to avoid clashes
Diffstat (limited to 'colors/base16-tomorrow-night.vim')
-rw-r--r-- | colors/base16-tomorrow-night.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/colors/base16-tomorrow-night.vim b/colors/base16-tomorrow-night.vim index 06d9ae4..7c7a756 100644 --- a/colors/base16-tomorrow-night.vim +++ b/colors/base16-tomorrow-night.vim @@ -401,10 +401,10 @@ call <sid>hi("SignifySignChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "", " call <sid>hi("SignifySignDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "", "") " Spelling highlighting -call <sid>hi("SpellBad", "", "", "", "", "undercurl", s:gui08) -call <sid>hi("SpellLocal", "", "", "", "", "undercurl", s:gui0C) -call <sid>hi("SpellCap", "", "", "", "", "undercurl", s:gui0D) -call <sid>hi("SpellRare", "", "", "", "", "undercurl", s:gui0E) +call <sid>hi("SpellBad", s:gui00, s:gui08, s:cterm00, s:cterm08, "undercurl", s:gui08) +call <sid>hi("SpellLocal", s:gui00, s:gui0C, s:cterm00, s:cterm0C, "undercurl", s:gui0C) +call <sid>hi("SpellCap", s:gui00, s:gui0D, s:cterm00, s:cterm0D, "undercurl", s:gui0D) +call <sid>hi("SpellRare", s:gui00, s:gui0E, s:cterm00, s:cterm0E, "undercurl", s:gui0E) " Startify highlighting call <sid>hi("StartifyBracket", s:gui03, "", s:cterm03, "", "", "") |