diff options
author | José Luis Lafuente <jl@lafuente.me> | 2018-02-02 12:16:47 +0100 |
---|---|---|
committer | José Luis Lafuente <jl@lafuente.me> | 2018-02-02 12:18:25 +0100 |
commit | 75ac90e11f1e2c24205eac8d915e50df8e3bc785 (patch) | |
tree | d326109ceb967f0ce5c71257256d00513d78a82d | |
parent | 97f2feb554471760f72cb6e4f872fde0f825b4b3 (diff) |
Set default foreground color for spelling
-rw-r--r-- | templates/default.mustache | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/default.mustache b/templates/default.mustache index b5ee60d..e14059f 100644 --- a/templates/default.mustache +++ b/templates/default.mustache @@ -361,10 +361,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", "", s:gui00, "", s:cterm00, "undercurl", s:gui08) -call <sid>hi("SpellLocal", "", s:gui00, "", s:cterm00, "undercurl", s:gui0C) -call <sid>hi("SpellCap", "", s:gui00, "", s:cterm00, "undercurl", s:gui0D) -call <sid>hi("SpellRare", "", s:gui00, "", s:cterm00, "undercurl", s:gui0E) +call <sid>hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm00, "undercurl", s:gui08) +call <sid>hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm00, "undercurl", s:gui0C) +call <sid>hi("SpellCap", s:gui05, s:gui00, s:cterm05, s:cterm00, "undercurl", s:gui0D) +call <sid>hi("SpellRare", s:gui05, s:gui00, s:cterm05, s:cterm00, "undercurl", s:gui0E) " Startify highlighting call <sid>hi("StartifyBracket", s:gui03, "", s:cterm03, "", "", "") |