From: Maximilian Friedersdorff Date: Thu, 19 Sep 2019 08:43:46 +0000 (+0100) Subject: Fix confusing vim paren matching X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=2197f011196954bfca1fd0e8c4e99f3e266ce049;p=max%2Fsaltfiles.git Fix confusing vim paren matching --- diff --git a/states/vim/files/vimrc b/states/vim/files/vimrc index 9a7f92b..50509ae 100644 --- a/states/vim/files/vimrc +++ b/states/vim/files/vimrc @@ -14,7 +14,6 @@ Plugin 'jelera/vim-javascript-syntax' Plugin 'noahfrederick/vim-noctu' Plugin 'pangloss/vim-javascript' Plugin 'Yggdroot/indentLine' -Plugin 'Raimondi/delimitMate' Plugin 'scrooloose/syntastic' Plugin 'ternjs/tern_for_vim' Plugin 'docunext/closetag.vim' @@ -40,6 +39,7 @@ Plugin 'lepture/vim-jinja' Plugin 'aklt/plantuml-syntax' Plugin 'psf/black' Plugin 'vim-python/python-syntax' +Plugin 'luochen1990/rainbow' " All of your Plugins must be added before the following line call vundle#end() " required @@ -149,3 +149,9 @@ let g:python_highlight_operators = 1 " Python indent autocmd FileType python setlocal foldmethod=indent foldnestmax=2 + +" Paren highlighting +hi MatchParen cterm=underline ctermbg=none ctermfg=none + +" Rainbow parens +let g:rainbow_active = 1