summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-10-04 21:58:28 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-10-04 21:58:28 +0200
commit7622c39b263b6ef5e41877ca3fbd84e8b2e0585c (patch)
tree6f9ebcec29e7f64a4c6b63040db3c6b033208e3c
parent8b97d8c7b07dcdb478e59d930860952547f1c8cb (diff)
nvim: Color the current line number in yellow
-rw-r--r--.config/nvim/after/plugin/colors.lua3
1 files changed, 3 insertions, 0 deletions
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()