0

I'm using vim and vundle. One of the steps to setup my vim env is to open vim, and then type :BundleInstall or :PluginInstall. I am trying to script this setup. Is there a way I can execute this without entering vim interactively itself? Meaning, without opening vim?

Tommy
  • 12,588
  • 14
  • 59
  • 110

1 Answers1

3

From this github issue:

https://github.com/junegunn/vim-plug/issues/225

it looks like you might be able to run from the command line, or bash script:

vim +PluginInstall +qall
nbwoodward
  • 2,816
  • 1
  • 16
  • 24