nvim: Switched to a different rainbow parentheses plugin

While at it, disable highlighting of matched parentheses.

Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
Sanchayan Maity 2020-05-14 15:34:57 +05:30
parent 4593725d7d
commit d211c2fe66
3 changed files with 7 additions and 8 deletions

View file

@ -1,8 +1,3 @@
augroup rainbow_lisp
autocmd!
autocmd FileType lisp,clojure,scheme RainbowParentheses
augroup END
augroup terminal_job
au!
au TermOpen * startinsert

View file

@ -43,8 +43,9 @@ Plug 'vim-erlang/vim-erlang-compiler', { 'for': 'erlang' }
" Lisp
Plug 'guns/vim-sexp', { 'for': [ 'scheme', 'lisp', 'clojure' ] }
Plug 'tpope/vim-sexp-mappings-for-regular-people', { 'for': [ 'scheme', 'lisp', 'clojure' ] }
Plug 'junegunn/rainbow_parentheses.vim', { 'for': [ 'scheme', 'lisp', 'clojure' ] }
Plug 'kovisoft/slimv', { 'for': [ 'scheme', 'lisp', 'clojure' ] }
" Rainbow Parentheses
Plug 'luochen1990/rainbow'
" Python
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
" For autocompletion

View file

@ -48,8 +48,11 @@ let g:mapleader = "\<Space>"
let g:maplocalleader = ','
let g:which_key_use_floating_win = 1
" For SLIMV
let g:lisp_rainbow=1
" Disable auto highlighting of Matched Parentheses
let g:loaded_matchparen = 1
" Rainbow Parentheses
let g:rainbow_active = 1
" FZF
let $FZF_DEFAULT_OPTS='--layout=reverse'