Niloct
Niloct

Reputation: 10015

Changing vim selected text colors

I would like to add a color scheme rule in vim in which I could apply black over white in a text everytime it's selected in visual mode.

Any ideas ? Thank you.

Upvotes: 3

Views: 3091

Answers (1)

Rook
Rook

Reputation: 62538

Try this

hi Visual gui=NONE guibg=White guifg=Black

If that's what you were aiming for, add it to your colorscheme or your _vimrc file.

Upvotes: 4

Related Questions