From 8104f93e6efda066d11d1ed5e8af89cc7a7035ad Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Fri, 6 Sep 2019 08:55:54 -0400 Subject: [PATCH] Rainbow brackets for vim --- vim/vimrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index 953a387..f412ea4 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -45,6 +45,8 @@ Plug 'ryanolsonx/vim-lsp-typescript' Plug 'prabirshrestha/asyncomplete.vim' Plug 'prabirshrestha/asyncomplete-lsp.vim' +Plug 'junegunn/rainbow_parentheses.vim' + Plug 'machakann/vim-highlightedyank' Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' @@ -84,3 +86,8 @@ autocmd! User vim-which-key call which_key#register('', 'g:which_key_map' call which_key#register('', "g:which_key_map") nnoremap :WhichKey '' nnoremap :WhichKey ',' + +"rainbow-parens +autocmd VimEnter * RainbowParentheses +let g:rainbow#blacklist = [248] +let g:rainbow#pairs = [['(', ')'], ['[', ']'], ['{', '}']]