2016年11月23日 星期三

[neovim, complete] How to install deoplete, a code complete plugin for neovim

How to install deoplete, a code complete plugin for neovim
deoplete-tss.gif

OS: Ubuntu 16.04
Google doc: This document.

Neovim 也有  code complete 的功能. 如果你寫的是 node.js, 放心, 這東西支援  javascript.

Step 1: Install neovim python3 interface


The command should return the value 1.



Step 2: Add deoplete to the vim-plug Section

~/.config/nvim/init.vim
call plug#begin('~/.vim/plugged')
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
call plug#end()

let g:deoplete#enable_at_startup = 1
(ref)

Step 3: Insatll the plugins

Command
:PlugInstall

Verification




References