diff options
-rw-r--r-- | .config/nvim/after/plugin/colors.lua | 3 |
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() |