我在Vim上有一个默认的配色方案,每次打开Vim时都会加载。在某些情况下,我想通过做之类的事情来加载不同的配色方案
vim-自定义
从iTerm启动vim时。这可能吗?
您可以通过选项--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'