我在Vim上有一个默认配色方案,每次打开Vim时都会加载。我希望在某些情况下通过执行类似
的操作来加载不同的配色方案vim -custom
从iTerm发布vim时。这可能吗?
答案 0 :(得分:2)
您可以通过选项--cmd <command>
或-c <command>
或+<command>
将命令传递给vim:
$ vim --help
...
+<lnum> Start at line <lnum>
--cmd <command> Execute <command> before loading any vimrc file
-c <command> Execute <command> after loading the first file
...
这些命令会将colorscheme
设置为darkblue
:
vim -c 'color darkblue'
vim --cmd 'color darkblue'
vim +'color darkblue'