From 41a6592403b5e5215b9fdce8f0084edb7fb46a8c Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Sat, 22 Dec 2018 18:37:44 +0100 Subject: [PATCH] Added rainbow --- init.vim | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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': [], + \ }, + \} + \} +