How To Change The Search Highlight Color In VIM
erics, October 22nd, 2010
Add the following line to your .vimrc file: [code]hi Search ctermfg=white ctermbg=lightgreen guifg=white guibg=black[/code] Color List Color Schemes Color Scroller Use :noh to clear the last search highlight. Place the following in your ~/.vimrc to map the F3 key to a highlight toggle: [code]nnoremap <F3> :set hlsearch!<CR>[/code]