我将urxvt与Solarized浅色调色板一起使用。我的.Xresources
文件已根据these instructions正确配置。我也使用Vim作为我的主编。我已经为Vim安装了Solarized colorscheme,并根据these instructions修改了我的.vimrc
文件。我喜欢浅色背景色,所以我将以下几行放在.vimrc
syntax enable
set background=light
colorscheme solarized
但是,Vim将背景颜色设置为黑暗。然后我编辑了第二行,写了set background=dark
并且vim将背景颜色改为光。
问题是set background=light
给了我深色背景,set background=dark
给了我浅色背景。为什么这种奇怪的行为?如何解决这个问题?啊,如果我遗漏set background
行,一切看起来都很好(背景很亮)。我还注意到gvim设置了正确的背景颜色。
答案 0 :(得分:3)
好吧,我发现了什么问题。使用浅色时,官方(?)Solarized for X Windows会被破坏。有一个讨论here和here。颜色方案未调整为background
的值。我使用the config from seletskiy配置解决了这个问题。