Highlighting Vim Spell

I want to change the vim cyan selection, for example in Autocompletion :

enter image description here

Please note that only change, do not delete.

I've already changed the SpellBad's red highlight to highlight the following settings:

hi clear SpellBad
hi SpellBad cterm=underline

      

But the same strategy for SpellRare doesn't work for me.

+3


source to share


1 answer


With the help of user852573 I finally got it working. My mistake was installing SpellRare instead of SpellLocal .

Currently my .vimrc looks like this:



 hi clear SpellBad                                                
 hi SpellBad cterm=underline                                      
 hi clear SpellRare                                               
 hi SpellRare cterm=underline                                     
 hi clear SpellCap                                                
 hi SpellCap cterm=underline                                      
 hi clear SpellLocal
 hi SpellLocal cterm=underline

      

And the entire editor is free from this terrible highlight.

+3


source







All Articles