msysgit vim 光标线在我的浅色背景上是黑色的。如何将其设置为亮起或关闭

发布于 2024-10-10 23:17:23 字数 316 浏览 5 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水水月牙 2024-10-17 23:17:23

您可以通过指定如下内容来显式设置语法着色:

hi CursorLine guibg=#ffffff guifg=#000000 gui=NONE ctermbg=white ctermfg=black cterm=NONE term=reverse

可以将上面的行包含在您的“~/.vimrc”中。然而,在理想情况下,设置 CursorLine 突出显示应该通过“~/.vimrc”来源的配色方案文件来完成。当然,大多数(编写良好的)配色方案应该定义合适的 CursorLine 高亮显示。我建议使用 Pyte 或我自己的 MayanSmoke

You can explicitly set the syntax coloration by specifying something like the following:

hi CursorLine guibg=#ffffff guifg=#000000 gui=NONE ctermbg=white ctermfg=black cterm=NONE term=reverse

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文