启动 vim 时是否可以将配色方案作为参数传递?
我将 VIM 与不同类型的文件一起使用,因此每次我都需要设置特定的配色方案。 是否可以将它们作为参数传递?
例子: vim colorcheme=沙漠
谢谢。
I use VIM with different types of files, so each time I need to set specific color schemes.
Is it possible to pass them as parameters ?
Example:
vim colorscheme=desert
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
vim -c "colorscheme Desert" $file
或同等
vim +"colorscheme Desert" $file
注意:您可以使用任何命令,而不仅仅是
colorscheme
>。有关详细信息,请参阅 手册页。vim -c "colorscheme desert" $file
or equally
vim +"colorscheme desert" $file
Note: you can use any command, not only
colorscheme
. For more information, see manpage.另一种方法是在
.vimrc
中使用autocomand
例如Another way is to use
autocomand
e.g. in your.vimrc