自己把設定上傳到github,然後clone下來的時候,發現要在在vim中執行PluginInstall
才能夠下載插件, 如何才能夠在腳本中觸發這個下載呢?
PHPz2017-05-16 16:37:55
可以在vimrc 中加入
let hasVundle=1
let vundle_readme=expand('~/.vim/bundle/vundle/README.md')
if !filereadable(vundle_readme)
echo "Installing Vundle..."
echo ""
silent !mkdir -p ~/.vim/bundle
silent !git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/vundle
let hasVundle=0
endif
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
这里配置你的插件列表xxx
if hasVundle == 0
echo "Installing Plugins, please ignore key map error messages"
echo ""
:PluginInstall
endif
自動下載 Vundle
並且安裝插件
可以參考 tao12345666333/vim On GitHub