由于某些原因,现在国内在下载vim plug 时,总是无法下载成功
x vim-fugitive:
Cloning into '/home/xx/.vim/plugged/vim-fugitive'...
error: RPC failed; curl 28 GnuTLS recv error (-110): The TLS connection was non
fatal: the remote end hung up unexpectedly
参考这位大神的方法 修改文件 ~/.vim/autoload/plug.vim ,即可正常下载
但是修改完成后,需要清除原来安装的plugin,否则会提示
x fzf:
Invalid URI: https://git::@github.com/junegunn/fzf.git
Expected: https://git::@hub.fastgit.org/junegunn/fzf.git
PlugClean required.
通常删除plugin 和plugged 目录下的文件即可
rm -rf ~/.vim/plugin/*
rm -rf ~/.vim/plugged/*
但有些插件是安装在其他路径下比如fzf 是安装在~/.fzf 目录,所以也需要删除这个目录
然后在vim 中重新执行一次PlugInstall 即可安装所有插件