首页 > 解决方案 > 如何更改vim中相对数字的颜色?

问题描述

我正在使用vim的夜猫子主题,我喜欢它。

只有一个问题。相对数字太暗了。

如何调整它们的颜色?

这是它目前的样子:

在此处输入图像描述

我想让 3 2 1 1 2 3 更亮。

标签: vimeditorvim-pluginvim-syntax-highlightingneovim

解决方案


This is controlled by LineNr highlight group. Try this:

:hi LineNr ctermfg=7

You can find other color numbers at :help cterm-colors.


推荐阅读