1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 17:20:04 +08:00

Enable deoplete in vim8

This commit is contained in:
wsdjeg 2017-11-12 22:28:56 +08:00
parent b90b27a161
commit 62d58977bf
2 changed files with 6 additions and 1 deletions

View File

@ -544,7 +544,7 @@ function! SpaceVim#end() abort
call add(g:spacevim_plugin_groups, 'colorscheme')
endif
if has('nvim')
if has('python3')
let g:spacevim_autocomplete_method = 'deoplete'
elseif has('lua')
let g:spacevim_autocomplete_method = 'neocomplete'

View File

@ -58,6 +58,10 @@ function! SpaceVim#layers#autocomplete#plugins() abort
\ 'on_event' : 'InsertEnter',
\ 'loadconf' : 1,
\ }])
if !has('nvim')
call add(plugins, ['SpaceVim/nvim-yarp', {'merged': 0}])
call add(plugins, ['SpaceVim/vim-hug-neovim-rpc', {'merged': 0}])
endif
endif
if has('patch-7.4.774')
call add(plugins, ['Shougo/echodoc.vim', {
@ -67,6 +71,7 @@ function! SpaceVim#layers#autocomplete#plugins() abort
\ }])
endif
call add(plugins, ['tenfyzhong/CompleteParameter.vim', {'merged': 0}])
call add(plugins, ['SpaceVim/LanguageClient-neovim', {'merged': 0}])
return plugins
endfunction