junegunn / rainbow_parentheses.vim

:rainbow: Simpler Rainbow Parentheses
377 stars 24 forks source link

Does not apply to braces #25

Closed ishankhare07 closed 4 years ago

ishankhare07 commented 5 years ago

Add option to also apply to braces. This will be specially helpful for languages other than lisp family which rely more on {} than ()

angeloashmore commented 4 years ago

You can do this with g:rainbow#pairs:

let g:rainbow#pairs = [['(', ')'], ['[', ']']]