Changing vim selected text colors

3k Views Asked by At

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.

1

There are 1 best solutions below

3
On

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.