diff options
author | HampusM <hampus@hampusmat.com> | 2024-06-01 13:15:46 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-06-01 13:15:46 +0200 |
commit | 37faf82c6a34ef74c45bf64277b2557a52fdfc62 (patch) | |
tree | 365fea3b44020814cab89fc71134d6e158f77814 /lua/style.lua | |
parent | c63422d74687c56497d2fb26df18976768d04ef2 (diff) |
make current line number have own color
Diffstat (limited to 'lua/style.lua')
-rw-r--r-- | lua/style.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lua/style.lua b/lua/style.lua index 5f442e1..2f7f5d6 100644 --- a/lua/style.lua +++ b/lua/style.lua @@ -5,7 +5,9 @@ ayu_colors.generate() -- Pass `true` to enable mirage require('ayu').setup({ overrides = { WinSeparator = { fg = ayu_colors.bg, bg = ayu_colors.bg }, - LineNr = { fg = ayu_colors.comment }, + LineNrAbove = { fg = ayu_colors.comment }, + LineNrBelow = { fg = ayu_colors.comment }, + LineNr = { fg = ayu_colors.accent }, NERDTreeWindow = { fg = ayu_colors.fg, bg = ayu_colors.panel_bg } } }) |