change autocomplete engine
This commit is contained in:
parent
f9f7f5ab07
commit
32619fb1d3
12
.init.vim-rplugin~
Normal file
12
.init.vim-rplugin~
Normal file
@ -0,0 +1,12 @@
|
||||
" python3 plugins
|
||||
call remote#host#RegisterPlugin('python3', '/home/valeth/User/data/nvim/plugins/deoplete.nvim/rplugin/python3/deoplete', [
|
||||
\ {'sync': 1, 'name': '_deoplete', 'type': 'function', 'opts': {}},
|
||||
\ ])
|
||||
|
||||
|
||||
" ruby plugins
|
||||
|
||||
|
||||
" python plugins
|
||||
|
||||
|
7
plugins/deoplete.nvim.vim
Normal file
7
plugins/deoplete.nvim.vim
Normal file
@ -0,0 +1,7 @@
|
||||
function! DoRemote(arg)
|
||||
UpdateRemotePlugins
|
||||
endfunction
|
||||
|
||||
Plug 'Shougo/deoplete.nvim', { 'do': function('DoRemote') }
|
||||
|
||||
let g:deoplete#enable_at_startup = 1
|
@ -1,6 +1,4 @@
|
||||
if v:version >= 704
|
||||
Plug 'Valloric/YouCompleteMe', {'do': 'python2 install.py --clang-completer' }
|
||||
endif
|
||||
"Plug 'Valloric/YouCompleteMe', {'do': 'python2 install.py --clang-completer' }
|
||||
|
||||
let g:ycm_global_ycm_extra_conf = g:vim_config_home . "/plugins/youcompleteme/ycm_extra_conf.py"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user