Just a simple example for folks that haven't done much vimscript.
Edit your ~/.vimrc and paste the following to change the colors
" testing poppy instead of rainbowparentheses: https://github.com/bounceme/poppy.vim
au! cursormoved * call PoppyInit()
" ColorColumn = white
" Constant = Red
" rubyRegexpSpecial = purple
" Special = Green
" Function = Yellow
let g:poppyhigh = ['Constant', 'rubyRegexpSpecial', 'Special', 'Function', 'rubyModule']
Note: The strings 'Constant' etc. are highlight groups, and you can get a list of available highlight groups by simply typing :hi in vim (colon hi - in case the editor mangles that).
Just a simple example for folks that haven't done much vimscript.
" testing poppy instead of rainbowparentheses: https://github.com/bounceme/poppy.vim au! cursormoved * call PoppyInit() " ColorColumn = white " Constant = Red " rubyRegexpSpecial = purple " Special = Green " Function = Yellow let g:poppyhigh = ['Constant', 'rubyRegexpSpecial', 'Special', 'Function', 'rubyModule']