From 29d184eb1e2dfeef6969f6da0f8809b106726b8c Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 1 Feb 2016 23:20:56 +0100 Subject: [PATCH] Add rainbow_parentheses.vim plugin Highlight square and curly braces, in addition to parentheses. --- vimrc | 6 ++++++ 1 file changed, 6 insertions(+) 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 " }}}