vim外掛 - clone下來的vim配置,如何讓vundle自動下載外掛?
大家讲道理
大家讲道理 2017-05-16 16:35:55
0
2
658

自己把設定上傳到github,然後clone下來的時候,發現要在在vim中執行PluginInstall才能夠下載插件, 如何才能夠在腳本中觸發這個下載呢?

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回覆(2)
我想大声告诉你

雷雷

PHPzhong

可以在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

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板