msysgit vim 光标线在我的浅色背景上是黑色的。如何将其设置为亮起或关闭
我在 Windows 7 上有 msysgit 版本 1.7.0.2-preview20100309 我的控制台窗口有浅色背景和深色文本 当我在 vim 中打开文件时(msysgit 中包含的 vim) 我的光标线以深色突出显示,因此我无法真正看到
我自己安装的 gvim 的文本,我使用 github256 配色方案,但这在控制台中没有任何效果。
我查看了 /share/vim/vimrc 以了解那里设置的内容。 我将光标线更改为“设置 nocursorline”和“设置背景=光”,但它没有效果。 如何在 msysgit 中设置我的 vim 样式? 如何摆脱这条黑色光标线 谢谢
I have msysgit version 1.7.0.2-preview20100309 on windows 7
and my console windows has light background with dark text
when I open a file in vim (the vim included in msysgit)
I get cursorline highlight in dark color so I can't really see my text
for my own installation of gvim I use github256 color scheme but that has no effect in console.
I have looked at /share/vim/vimrc to see what's set there.
I changed cursorline to 'set nocursorline' and 'set background=light' but it has no effect.
How do I style my vim in msysgit?
How do I get rid of this dark cursorline
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过指定如下内容来显式设置语法着色:
您可以将上面的行包含在您的“~/.vimrc”中。然而,在理想情况下,设置 CursorLine 突出显示应该通过“~/.vimrc”来源的配色方案文件来完成。当然,大多数(编写良好的)配色方案应该定义合适的 CursorLine 高亮显示。我建议使用 Pyte 或我自己的 MayanSmoke。
You can explicitly set the syntax coloration by specifying something like the following:
You can include the above line your '~/.vimrc'. However, in the ideal case, setting the CursorLine highlight should be done in by the color scheme file being sourced by '~/.vimrc'. Most (well-written) color schemes should define a suitable CursorLine highlight as a matter of course. I would suggest using something like Pyte or my own MayanSmoke.