使用 vim 打开具有非默认配色方案的文件

使用 vim 打开具有非默认配色方案的文件

我以前知道在使用 vim 时添加一个选项,该选项会使用指定的颜色打开编辑器。我不想永久更改系统范围内的颜色,而是使用别名以不同的方案打开文件。

我该怎么做呢?

答案1

您可以使用+-c

:h startup

+command, -c command
             Execute command after reading the first file.  Up to 10
             instances allowed.  "+foo" and -c "foo" are equivalent.

$ vim +'colo blue' ~/.bashrc
$ vim -c 'colo blue' ~/.bashrc

~/.bashrc别名:

alias vimcolor="vim -c 'colo blue' $@"

相关内容