How To Change The Search Highlight Color In VIM

Author: , 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]

VIM: How To Turn off Bracket Highlighting

Author: , September 27th, 2009

To turn off Bracket Highlighting: Put let g:loaded_matchparen= 1 in your .vimrc.