how to automate installing conque term?

…衆ロ難τιáo~ 提交于 2019-12-12 01:19:49

问题


I've tried installing conque using vundle but not had any success so I'm trying to install manually using the instructions online:

  1. download https://conque.googlecode.com/files/conque_2.3.vmb

  2. Open the .vba file with Vim and run the following commands:

    :so %

    :q

How can I automate installing vim?


回答1:


This appears to have worked, so I'm documenting it in case it is useful for others:

$ vim 'https://conque.googlecode.com/files/conque_2.3.vmb' -c ':so % | q'



回答2:


This is my simple bash script to install vim (after cloning .dotfiles), Vundle, and install all plugins specified in .vimrc

ln -s ~/.dotfiles/.vimrc ~/.vimrc
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim -c 'PluginInstall' -c 'qa!'

It will open vim and show the Vundle plugins as they install with the native progress indicators and all that, then quit automatically when its finished. Bash scripts below will still be executed once vim is done and exits.



来源:https://stackoverflow.com/questions/31971275/how-to-automate-installing-conque-term

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!