1
0

change autocomplete engine

This commit is contained in:
valeth 2016-04-20 18:09:54 +02:00
parent f9f7f5ab07
commit 32619fb1d3
3 changed files with 20 additions and 3 deletions

12
.init.vim-rplugin~ Normal file
View 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

View File

@ -0,0 +1,7 @@
function! DoRemote(arg)
UpdateRemotePlugins
endfunction
Plug 'Shougo/deoplete.nvim', { 'do': function('DoRemote') }
let g:deoplete#enable_at_startup = 1

View File

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