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:
parent
4593725d7d
commit
d211c2fe66
3 changed files with 7 additions and 8 deletions
|
@ -1,8 +1,3 @@
|
||||||
augroup rainbow_lisp
|
|
||||||
autocmd!
|
|
||||||
autocmd FileType lisp,clojure,scheme RainbowParentheses
|
|
||||||
augroup END
|
|
||||||
|
|
||||||
augroup terminal_job
|
augroup terminal_job
|
||||||
au!
|
au!
|
||||||
au TermOpen * startinsert
|
au TermOpen * startinsert
|
||||||
|
|
|
@ -43,8 +43,9 @@ Plug 'vim-erlang/vim-erlang-compiler', { 'for': 'erlang' }
|
||||||
" Lisp
|
" Lisp
|
||||||
Plug 'guns/vim-sexp', { 'for': [ 'scheme', 'lisp', 'clojure' ] }
|
Plug 'guns/vim-sexp', { 'for': [ 'scheme', 'lisp', 'clojure' ] }
|
||||||
Plug 'tpope/vim-sexp-mappings-for-regular-people', { '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' ] }
|
Plug 'kovisoft/slimv', { 'for': [ 'scheme', 'lisp', 'clojure' ] }
|
||||||
|
" Rainbow Parentheses
|
||||||
|
Plug 'luochen1990/rainbow'
|
||||||
" Python
|
" Python
|
||||||
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
|
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
|
||||||
" For autocompletion
|
" For autocompletion
|
||||||
|
|
|
@ -48,8 +48,11 @@ let g:mapleader = "\<Space>"
|
||||||
let g:maplocalleader = ','
|
let g:maplocalleader = ','
|
||||||
let g:which_key_use_floating_win = 1
|
let g:which_key_use_floating_win = 1
|
||||||
|
|
||||||
" For SLIMV
|
" Disable auto highlighting of Matched Parentheses
|
||||||
let g:lisp_rainbow=1
|
let g:loaded_matchparen = 1
|
||||||
|
|
||||||
|
" Rainbow Parentheses
|
||||||
|
let g:rainbow_active = 1
|
||||||
|
|
||||||
" FZF
|
" FZF
|
||||||
let $FZF_DEFAULT_OPTS='--layout=reverse'
|
let $FZF_DEFAULT_OPTS='--layout=reverse'
|
||||||
|
|
Loading…
Reference in a new issue