nvim: switch completion to deoplete

This commit is contained in:
Grigory Shipunov 2020-08-04 19:07:22 +02:00
parent 77957237ea
commit a434c9be6a
No known key found for this signature in database
GPG key ID: 77BB6C3E4771EE7C

View file

@ -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