如何自动安装征服术语?

how to automate installing conque term?

我试过使用 vundle so I'm trying to install manually using the instructions 在线安装 conque:

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

  2. 使用以下命令 Vim 和 运行 打开 .vba 文件:

    :so %

    :q

如何自动安装 vim?

这似乎奏效了,所以我正在记录它以防它对其他人有用:

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

这是我的简单 bash 脚本,用于安装 vim(在克隆 .dotfiles 之后)、Vundle,并安装 .vimrc

中指定的所有插件
ln -s ~/.dotfiles/.vimrc ~/.vimrc
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim -c 'PluginInstall' -c 'qa!'

它将打开 vim 并在安装时显示 Vundle 插件以及本机进度指示器等,然后在完成后自动退出。 Bash 下面的脚本在 vim 完成并退出后仍会执行。