Reputation: 10015
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
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