suchen

Heim  >  Fragen und Antworten  >  Hauptteil

vim-Plug-in – geklonte vim-Konfiguration, wie kann man dafür sorgen, dass Vundle das Plug-in automatisch herunterlädt?

Ich habe die Konfiguration selbst auf Github hochgeladen und sie dann geklont. Ich habe festgestellt, dass ich sie in vim ausführen muss PluginInstall, um das Plug-In herunterzuladen. Wie kann ich diesen Download im Skript auslösen?

大家讲道理大家讲道理2743 Tage vor622

Antworte allen(2)Ich werde antworten

  • 我想大声告诉你

    我想大声告诉你2017-05-16 16:37:55

    #install.sh
    vim +BundleInstall +qall

    Antwort
    0
  • PHPz

    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

    Antwort
    0
  • StornierenAntwort