nvim: switch completion to deoplete
This commit is contained in:
parent
77957237ea
commit
a434c9be6a
1 changed files with 4 additions and 1 deletions
|
@ -36,7 +36,7 @@ Plug 'airblade/vim-gitgutter'
|
|||
|
||||
" Checking, linting, building etc.
|
||||
Plug 'neomake/neomake'
|
||||
Plug 'ycm-core/YouCompleteMe', {'for': ['python', 'c', 'cpp']}
|
||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||
|
||||
"Better syntax
|
||||
Plug 'lervag/vimtex', {'for': 'tex'}
|
||||
|
@ -148,6 +148,9 @@ call neomake#configure#automake('rw')
|
|||
nmap <leader>a <Plug>(EasyAlign)
|
||||
xmap <leader>a <Plug>(EasyAlign)
|
||||
|
||||
" dark-magic completion
|
||||
let g:deoplete#enable_at_startup = 1
|
||||
|
||||
" change tab completion to more bash-like
|
||||
set wildmode=longest:full,list:full
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue