Setting the vim color theme for highlighted braces

How do you change the vim color scheme for highlighted braces? I’m looking to actually edit the .vim theme file to make the change permanent.

Regards,
Craig

The automatic highlight colour for matching brackets is called MatchParen. You can change the colour in your .vimrc by doing eg:

highlight MatchParen cterm=bold ctermfg=cyan

Attribution
Source : Link , Question Author : Craig , Author : Daniel Roseman

Leave a Comment