diff --git a/vimrc b/vimrc index 9123949..158e921 100644 --- a/vimrc +++ b/vimrc @@ -66,6 +66,7 @@ let mapleader = "," Plugin 'tpope/vim-fugitive' Plugin 'terryma/vim-multiple-cursors' Plugin 'junegunn/vim-easy-align' + Plugin 'junegunn/rainbow_parentheses.vim' call vundle#end() filetype plugin indent on @@ -81,6 +82,11 @@ let mapleader = "," nmap n :NERDTreeToggle " }}} + " rainbow_parentheses {{{ + let g:rainbow#pairs = [['(',')'], ['[',']'], ['{','}']] + nnoremap r :RainbowParentheses!! " toggle rainbow parens + " }}} + " tagbar {{{ nnoremap g :TagbarToggle " }}}