Я думаю, что это то, что вам нужно:
Вы должны проверить ВИМ человек страницы:
-c {command}
{command} will be executed after the first file has been
read. {command} is interpreted as an Ex command. If the
{command} contains spaces it must be enclosed in double
quotes (this depends on the shell that is used). Example:
Vim "+set si" main.c
Note: You can use up to 10 "+" or "-c" commands.
или:
--cmd {command}
Like using "-c", but the command is executed just before
processing any vimrc file. You can use up to 10 of these
commands, independently from "-c" commands.
Это действительно зависит от того, что вы хотите сделать. Кроме того, как описано в файле vundle ридх, если вы запускаете Vim, как это:
vim +BundleInstall +qall
Это позволит установить все опции набора без открытия Vim. И просто для уточнения, из vim documentation:
:qall
This stands for "quit all". If any of the windows contain changes, Vim will
not exit. The cursor will automatically be positioned in a window with
changes. You can then either use ":write" to save the changes, or ":quit!" to
throw them away.
Надеется, что это помогает!
Это прямо из vundle README здесь: https://github.com/gmarik/vundle – Conner
Да - выяснилось, что после получения этой работы на основе manpage – jvc26
Удивительно проницательный. Мне нравится, как нам больше не нужно «man vim» и прокручивать вниз две страницы благодаря SO. – peth