Rainbow brackets for vim
This commit is contained in:
parent
46fdaf14f5
commit
8104f93e6e
1 changed files with 7 additions and 0 deletions
|
@ -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('<Space>', 'g:which_key_map'
|
|||
call which_key#register('<Space>', "g:which_key_map")
|
||||
nnoremap <silent> <leader> :<c-u>WhichKey '<Space>'<CR>
|
||||
nnoremap <silent> <localleader> :<c-u>WhichKey ','<CR>
|
||||
|
||||
"rainbow-parens
|
||||
autocmd VimEnter * RainbowParentheses
|
||||
let g:rainbow#blacklist = [248]
|
||||
let g:rainbow#pairs = [['(', ')'], ['[', ']'], ['{', '}']]
|
||||
|
|
Loading…
Add table
Reference in a new issue