diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-10-05 14:42:59 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-10-05 14:42:59 +0200 |
commit | 294264d83a6812c03d9299aeb548a85690f10984 (patch) | |
tree | 635459369c7fac61bcf469b9dfbaa7bdd45164d5 /.config/nvim/after/plugin/colors.lua | |
parent | c3bfe82077ca67ff23e65fcf8bba76a43208a524 (diff) |
nvim: Make the current line number white
Diffstat (limited to '.config/nvim/after/plugin/colors.lua')
-rw-r--r-- | .config/nvim/after/plugin/colors.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/after/plugin/colors.lua b/.config/nvim/after/plugin/colors.lua index 18fc70b..30e6b7f 100644 --- a/.config/nvim/after/plugin/colors.lua +++ b/.config/nvim/after/plugin/colors.lua @@ -15,7 +15,7 @@ function SetTheme(color) }) hl(0, 'NormalFloat', { bg = 'none' }) - hl(0, 'LineNr', { fg = 'yellow' }) + hl(0, 'LineNr', { fg = 'white' }) hl(0, 'LineNrAbove', { fg = 'grey' }) hl(0, 'LineNrBelow', { fg = 'grey' }) end |