vote up 2 vote down star
1

Hello

When VIM starts, it displays '~' symbol for empty lines. Does anyone knows is it way to change this tilde symbol color?

flag

4 Answers

vote up 11 vote down check

Try this:

:highlight NonText ctermfg=12

12 is the default color; change as you see fit.

link|flag
vote up 6 vote down

Lucas is right but if you want to change the colour in gvim as well I think you need guifg= as well as ctermfg=

i.e. :highlight NonText ctermfg=color guifg=color

link|flag
vote up 5 vote down

I can't leave comments yet, so this will have to be an answer..

Lucas is correct, but you must remember that this will also change the color of the characters shown when you :set list. If you are attempting to hide these tildes, you will also hide those characters.

link|flag
vote up 0 vote down

You could try a new color scheme.

:colors <colorscheme name>

You can find the names of the schemes installed on your system in $VIMRUNTIME/colors/ Also, if the 'bg' option isn't set properly, those little tildes can be hard to see.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.