Hello,
Can you please share the 14.04 version of your init.vim file?
I am attempting to follow your guide here: link
But I am having issues with neovim.
Here is my current init.vim:
"start dein Scripts-----------------------------
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath+=/home/ubuntu/.random/repos/github.com/Shougo/dein.vim
" Required:
if dein#load_state('/home/ubuntu/.random')
call dein#begin('/home/ubuntu/.random')
" Let dein manage dein
" Required:
call dein#add('/home/ubuntu/.random/repos/github.com/Shougo/dein.vim')
" Add or remove your plugins here:
call dein#add('Shougo/neosnippet.vim')
call dein#add('Shougo/neosnippet-snippets')
" You can specify revision/branch/tag.
call dein#add('Shougo/vimshell', { 'rev': '3787e5' })
call dein#add('Shougo/deoplete.nvim')
call deoplete#enable()
Required:
call dein#end()
call dein#save_state()
endif
" Required:
filetype plugin indent on
syntax enable
" If you want to install not installed plugins on startup.
if dein#check_install()
call dein#install()
endif
"End dein Scripts-------------------------
g:python3_host_prog = '/home/ubuntu/py36venv/bin/python'
I am unable to get auto-complete, as it gives errors like:
[deoplete] deoplete failed to load: Vim(call):E117: Unknown function: _deoplete. Try the :UpdateRemotePlugins command and restart Neovim. See also :CheckHealth.
Error detected while processing /home/ubuntu/.config/nvim/init.vim:
line 29:
E492: Not an editor command: Required:
Pattern not found: python3_host_prog = '/home/ubuntu/py36venv/bin/python'
Hello,
Can you please share the 14.04 version of your init.vim file?
I am attempting to follow your guide here: link
But I am having issues with neovim.
Here is my current init.vim:
I am unable to get auto-complete, as it gives errors like: