From 7622c39b263b6ef5e41877ca3fbd84e8b2e0585c Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Wed, 4 Oct 2023 21:58:28 +0200 Subject: nvim: Color the current line number in yellow --- .config/nvim/after/plugin/colors.lua | 3 +++ 1 file changed, 3 insertions(+) (limited to '.config/nvim/after/plugin/colors.lua') diff --git a/.config/nvim/after/plugin/colors.lua b/.config/nvim/after/plugin/colors.lua index f14e545..ea98761 100644 --- a/.config/nvim/after/plugin/colors.lua +++ b/.config/nvim/after/plugin/colors.lua @@ -14,6 +14,9 @@ function SetTheme(color) }) hl(0, 'NormalFloat', { bg = 'none' }) + hl(0, 'LineNr', { fg = 'yellow' }) + hl(0, 'LineNrAbove', { fg = 'grey' }) + hl(0, 'LineNrBelow', { fg = 'grey' }) end SetTheme() -- cgit v1.2.3