1
0
Fork 0

Replace NERDCommenter with vim-commentary

This commit is contained in:
Jeremy Kaplan 2018-01-03 17:10:31 -08:00 committed by Jeremy Kaplan
commit e53488b7fd

View file

@ -11,11 +11,13 @@ if dein#load_state('~/.config/nvim/plugins')
call dein#add('Shougo/denite.nvim') call dein#add('Shougo/denite.nvim')
call dein#add('Shougo/deoplete.nvim') call dein#add('Shougo/deoplete.nvim')
call dein#add('fatih/vim-go') call dein#add('fatih/vim-go')
call dein#add('kana/vim-textobj-user')
call dein#add('glts/vim-textobj-comment')
call dein#add('jiangmiao/auto-pairs') call dein#add('jiangmiao/auto-pairs')
call dein#add('neomake/neomake') call dein#add('neomake/neomake')
call dein#add('ntpeters/vim-better-whitespace') call dein#add('ntpeters/vim-better-whitespace')
call dein#add('scrooloose/nerdcommenter')
call dein#add('scrooloose/nerdtree') call dein#add('scrooloose/nerdtree')
call dein#add('tpope/vim-commentary')
call dein#add('tpope/vim-repeat') call dein#add('tpope/vim-repeat')
call dein#add('tpope/vim-surround') call dein#add('tpope/vim-surround')
call dein#add('vim-python/python-syntax') call dein#add('vim-python/python-syntax')
@ -101,10 +103,6 @@ set completeopt+=noselect
set completeopt+=menuone set completeopt+=menuone
set completeopt+=longest set completeopt+=longest
let g:NERDSpaceDelims = 1
let g:NERDCommentEmptyLines = 1
let g:NERDTrimTrailingWhitespace = 1
call neomake#configure#automake('w') call neomake#configure#automake('w')
let g:neomake_serialize = 1 let g:neomake_serialize = 1
let g:neomake_serialize_abort_on_error = 1 let g:neomake_serialize_abort_on_error = 1