" There are two sets of defaults: for a dark and a light background.
if &background == "dark"
SynColor Comment term=bold cterm=NONE ctermfg=Cyan ctermbg=NONE gui=NONE guifg=#80a0ff guibg=NONE
SynColor Constant term=underline cterm=NONE ctermfg=Magenta ctermbg=NONE gui=NONE guifg=#ffa0a0 guibg=NONE
SynColor Special term=bold cterm=NONE ctermfg=LightRed ctermbg=NONE gui=NONE guifg=Orange guibg=NONE
6条答案
按热度按时间mwecs4sa1#
大概你只需要告诉 vim 你有一个黑暗的背景:
这应该会将突出显示更改为可读性更好的内容。
bvn4nwqk2#
看一下
syncolor.vim
,你会在/usr/share/vim/vim{version}/syntax/
中找到它。摘录:
所以第一行
SynColor
看起来很有趣。我承认我不知道你是否能覆盖它,而不是改变这个文件。bpsygsoo3#
如果你想在不改变背景的情况下改变注解的颜色,你可以使用
highlight
命令。Vim documentation on:highlight例如,
:hi Comment term=bold ctermfg=Cyan guifg=#80a0ff gui=bold
0s7z1bwu4#
$VIMRUNTIME/colors/README.txt(在我的系统上,/usr/share/vim/vim 72/colors)
rqenqsqc5#
您可以将
colorsheme
设置为desert
。例如Ubuntu 16.04中的默认值zpgglvta6#
最好的方法是将配色方案更改为另一种(更浅的)配色方案:
在导航模式下键入:
:配色方案空间Ctl +D
然后键入方案名称Enter