如何设置Vim突出显示ColorColumn准则透明度?

时间:2019-03-07 18:16:16

标签: vim vim-plugin ui-guidelines

我设置了:highlight ColorColumn ctermbg=1,但是指南太暗了。如何提高vim准则的透明度,以便更好地了解它背后的哪些字符?

enter image description here

或者,setcolumn准则可能类似于Sublime Text,只是一条细线:

enter image description here

1 个答案:

答案 0 :(得分:2)

Vim在颜色设置中不使用透明度,在这种情况下,您将颜色设置为ANSI 1或红色。如果顶部突出显示的语法接近相同的颜色,将很难阅读。

在我的系统上,我将背景和黑色配置为略有不同,因此使用ANSI 16可获得良好的效果。

highlight ColorColumn ctermbg=16

或者如果您具有256色端子:

highlight ColorColumn ctermbg=238

可能看起来像这样:

enter image description here