diff --git a/init.vim b/init.vim index 44c2dfb..dcc5190 100644 --- a/init.vim +++ b/init.vim @@ -10,6 +10,7 @@ Plug 'airblade/vim-gitgutter' Plug 'Shougo/neosnippet.vim' Plug 'honza/vim-snippets' Plug 'vim-scripts/a.vim' +Plug 'luochen1990/rainbow' call plug#end() " =============Settings================== filetype plugin on @@ -101,3 +102,14 @@ imap :ATi let g:alternateSearchPath = 'sfr:../source,sfr:../src,sfr:../include,../../include,sfr:../inc,sfr:../h' " Dont create the file if the .cpp or .h is not found let g:alternateNoDefaultAlternate = 1 + +" ===========RAINBOW==================== +let g:rainbow_active = 1 +let g:rainbow_conf = { + \'separately': { + \ 'cmake': { + \ 'parentheses': [], + \ }, + \} + \} +