Added rainbow

This commit is contained in:
Oliver Hartmann 2018-12-22 18:37:44 +01:00
parent e221c239dd
commit 41a6592403

View File

@ -10,6 +10,7 @@ Plug 'airblade/vim-gitgutter'
Plug 'Shougo/neosnippet.vim' Plug 'Shougo/neosnippet.vim'
Plug 'honza/vim-snippets' Plug 'honza/vim-snippets'
Plug 'vim-scripts/a.vim' Plug 'vim-scripts/a.vim'
Plug 'luochen1990/rainbow'
call plug#end() call plug#end()
" =============Settings================== " =============Settings==================
filetype plugin on filetype plugin on
@ -101,3 +102,14 @@ imap <S-F5> <Esc>:AT<CR>i
let g:alternateSearchPath = 'sfr:../source,sfr:../src,sfr:../include,../../include,sfr:../inc,sfr:../h' 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 " Dont create the file if the .cpp or .h is not found
let g:alternateNoDefaultAlternate = 1 let g:alternateNoDefaultAlternate = 1
" ===========RAINBOW====================
let g:rainbow_active = 1
let g:rainbow_conf = {
\'separately': {
\ 'cmake': {
\ 'parentheses': [],
\ },
\}
\}