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

Use deoplete-plugins/deoplete-dictionary instead (#3172)

This commit is contained in:
Wang Shidong 2019-10-20 19:00:33 +08:00 committed by GitHub
parent 453a1e83d1
commit b90c7fb57a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,12 +32,12 @@ function! SpaceVim#layers#autocomplete#plugins() abort
let plugins = [
\ ['honza/vim-snippets', { 'on_event' : 'InsertEnter', 'loadconf_before' : 1}],
\ ['Shougo/neco-syntax', { 'on_event' : 'InsertEnter'}],
\ ['ujihisa/neco-look', { 'if' : executable('look')}],
\ ['Shougo/context_filetype.vim', { 'on_event' : 'InsertEnter'}],
\ ['Shougo/neoinclude.vim', { 'on_event' : 'InsertEnter'}],
\ ['Shougo/neosnippet-snippets', { 'merged' : 0}],
\ ['Shougo/neopairs.vim', { 'on_event' : 'InsertEnter'}],
\ ]
call add(plugins, ['deoplete-plugins/deoplete-dictionary', { 'merged' : 0}])
if g:spacevim_autocomplete_parens
call add(plugins, ['Raimondi/delimitMate', { 'merged' : 0}])
endif