-
Notifications
You must be signed in to change notification settings - Fork 273
Closed
Description
I trird vim-plug and dein.vim, both failure.
INFO
- NVIM v0.2.2
- Ubuntu 16.04 (Xenial)
I write minimal reproduce way.
vim-plug: Minimal vimrc & Error info
Install
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
vimrc(~/.config/nvim/init.vim)
call plug#begin('~/.vim/plugged')
Plug 'autozimu/LanguageClient-neovim', { 'tag': 'binary-*-x86_64-unknown-linux-musl' }
call plug#end():PlugInstall
Installing plugins (0/1)
[ ]
+ LanguageClient-neovim: remote: Counting objects: 4450, done.
stop in this state forever...
dein.vim: Minimal vimrc & Error info
Install
$ mkdir -p ~/.vim/bundle/repos/github.com/Shougo/dein.vim
$ git clone https://github.com/Shougo/dein.vim \
~/.vim/bundle/repos/github.com/Shougo/dein.vim
vimrc(~/.config/nvim/init.vim)
if &compatible
set nocompatible
endif
set runtimepath+=~/.vim/bundle/repos/github.com/Shougo/dein.vim
if dein#load_state('~/.vim/bundle')
call dein#begin('~/.vim/bundle')
call dein#add('Shougo/dein.vim')
call dein#add('autozimu/LanguageClient-neovim', { 'rev': 'binary-*-x86_64-unknown-linux-musl' })
call dein#end()
call dein#save_state()
endif
filetype plugin indent on
syntax enableError info
- :call dein#install()
- :message after "[dein] Done"
[dein] Update started: (2017/12/28 04:22:50)
[dein] LanguageClient-neovim
[dein] Error revision number: fatal: Unable to read current working directory: No such file or directory
[dein] /root/.vim/bundle/repos/github.com/autozimu/LanguageClient-neovim
[dein] fatal: Not a git repository (or any of the parent directories): .git
[dein] /root/.vim/bundle/repos/github.com/autozimu/LanguageClient-neovim
[dein] Maybe wrong username or repository.
[dein] Process timeout: (2017/12/28 04:24:52)
[dein] Error installing plugins:
[dein] LanguageClient-neovim
[dein] Please read the error message log with the :message command.
[dein] Done: (2017/12/28 04:24:53)
Metadata
Metadata
Assignees
Labels
No labels