Deoplete is the abbreviation of "dark powered neo-completion". It provides an asynchronous keyword completion system in the current buffer. Deoplete currently has few features and limited customization. To view the current options, please consult the documentation.
Note: deoplete requires Neovim(latest is recommended) with Python3 enabled. See requirements if you aren't sure whether you have this.
- Extract the files and put them in your Neovim directory
(usually
~/.config/nvim
). - Execute the
:UpdateRemotePlugins
or:NeoBundleRemotePlugins
(for using NeoBundle) and restart Neovim. - Execute the
:DeopleteEnable
command or setlet g:deoplete#enable_at_startup = 1
in your$XDG_CONFIG_HOME/nvim/init.vim
deoplete requires Neovim with if_python3.
If :echo has("python3")
returns 1
, then you're done; otherwise, see below.
You can enable Python3 interface with pip:
sudo pip3 install neovim
If you want to read the Neovim-python/python3 interface install documentation,
you should read :help nvim-python
.
" Use deoplete.
let g:deoplete#enable_at_startup = 1