From 69fa66b3b5c5855881b11c706fe395fe56aa8f38 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 29 Oct 2017 18:30:58 -0400 Subject: switch to a more maintained rainbow parens plugin --- vimrc | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) (limited to 'vimrc') diff --git a/vimrc b/vimrc index 9b55366..7249a71 100644 --- a/vimrc +++ b/vimrc @@ -125,9 +125,25 @@ endfunction autocmd vimrc VimEnter * call configure_neosnippet_tab_mappings() " }}} " rainbow {{{ -let g:rainbow = 1 -let g:rainbow_paren = 1 -let g:rainbow_brace = 1 +let g:rainbow_active = 1 +let g:rainbow_conf = { +\ 'ctermfgs': [ +\ 'darkred', +\ 'darkmagenta', +\ 'darkblue', +\ 'darkyellow', +\ 'darkgreen', +\ 'darkcyan', +\ ], +\ 'guitermfgs': [ +\ 'red', +\ 'magenta', +\ 'blue', +\ 'yellow', +\ 'green', +\ 'cyan', +\ ], +\} " }}} " startify {{{ let g:startify_list_order = ['dir', 'bookmarks', 'commands'] @@ -151,12 +167,5 @@ let g:Textobj_defs = [ \['\|', 'Textobj_paired', '\|'], \] " }}} -" Load plugins that don't use vim's format {{{ -" just loading this directly from the plugin directory fails because language -" syntax files override the highlighting -" using BufWinEnter because that is run after modelines are run (so it catches -" modelines which update highlighting) -autocmd vimrc BufWinEnter,FileType * runtime plugin/rainbow_paren.vim -" }}} " }}} " vim: fdm=marker -- cgit v1.2.3-54-g00ecf