nvim plugins
This commit is contained in:
parent
bcf2bb88b5
commit
1627325eff
1 changed files with 14 additions and 0 deletions
|
|
@ -10,6 +10,12 @@ if dein#load_state('~/.config/nvim/plugins')
|
||||||
call dein#add('Shougo/dein.vim')
|
call dein#add('Shougo/dein.vim')
|
||||||
call dein#add('Shougo/deoplete.nvim')
|
call dein#add('Shougo/deoplete.nvim')
|
||||||
call dein#add('Shougo/denite.nvim')
|
call dein#add('Shougo/denite.nvim')
|
||||||
|
call dein#add('fatih/vim-go')
|
||||||
|
call dein#add('scrooloose/nerdcommenter')
|
||||||
|
call dein#add('neomake/neomake')
|
||||||
|
call dein#add('ntpeters/vim-better-whitespace')
|
||||||
|
call dein#add('tpope/vim-surround')
|
||||||
|
call dein#add('tpope/vim-repeat')
|
||||||
|
|
||||||
call dein#end()
|
call dein#end()
|
||||||
call dein#save_state()
|
call dein#save_state()
|
||||||
|
|
@ -76,5 +82,13 @@ map ;x :x<CR>
|
||||||
|
|
||||||
let g:deoplete#enable_at_startup = 1
|
let g:deoplete#enable_at_startup = 1
|
||||||
|
|
||||||
|
let g:NERDSpaceDelims = 1
|
||||||
|
let g:NERDCommentEmptyLines = 1
|
||||||
|
let g:NERDTrimTrailingWhitespace = 1
|
||||||
|
map gcc \c<Space>
|
||||||
|
|
||||||
|
call neomake#configure#automake('w')
|
||||||
|
set formatoptions+=n
|
||||||
|
|
||||||
autocmd BufEnter * EnableStripWhitespaceOnSave
|
autocmd BufEnter * EnableStripWhitespaceOnSave
|
||||||
autocmd BufNewFile,BufRead *.tako set filetype=python
|
autocmd BufNewFile,BufRead *.tako set filetype=python
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue