How To Change The Search Highlight Color In VIM

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]
Leave Your Comment
All fields marked with "*" are required.