]> git.rmz.io Git - dotfiles.git/blobdiff - vim/vimrc
nvim: replace delimitmate with mini.pairs
[dotfiles.git] / vim / vimrc
index abce7512691ea3cd1e35bbac24abaf57d387bac2..db6f710be1c263ad726dda08d6c3463ff718a471 100644 (file)
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -48,7 +48,12 @@ Plug 'klen/python-mode'
 Plug 'kshenoy/vim-signature'
 Plug 'majutsushi/tagbar'
 Plug 'octol/vim-cpp-enhanced-highlight'
-Plug 'raimondi/delimitmate'
+if !has('nvim')
+  Plug 'raimondi/delimitmate' " {{{2
+  let delimitMate_expand_cr = 2
+  let g:delimitMate_expand_space = 1
+  "}}}
+end
 Plug 'sgeb/vim-diff-fold'
 Plug 'skywind3000/asyncrun.vim' " {{{2
 command! -bang -nargs=* -complete=file Make AsyncRun -save=2 -program=make @ <args>
@@ -676,9 +681,6 @@ nnoremap <silent> <C-W>cl :CloseRightWindow<CR>
 nnoremap <silent> <C-W>cj :CloseBelowWindow<CR>
 nnoremap <silent> <C-W>ck :CloseAboveWindow<CR>
 
-" delimitmate {{{2
-let delimitMate_expand_cr = 2
-let g:delimitMate_expand_space = 1
 
 " fswitch {{{2
 nnoremap <silent> <Leader>ff :FSHere<CR>
@@ -972,8 +974,6 @@ function! SwitchSpell()
 endfunction
 
 nnoremap <silent> coS :call SwitchSpell()<CR>
-" fix spelling with first choice
-nnoremap <Leader>f 1z=
 
 " gitdir or home {{{2
 " from derek wyatt: