diff options
Diffstat (limited to '.config')
| -rw-r--r-- | .config/nvim/lua/plugins/theme.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/theme.lua b/.config/nvim/lua/plugins/theme.lua index 06b0133..8176b64 100644 --- a/.config/nvim/lua/plugins/theme.lua +++ b/.config/nvim/lua/plugins/theme.lua @@ -3,6 +3,11 @@ return { "neanias/everforest-nvim", priority = 1000, config = function() + require("everforest").setup({ + on_highlights = function(hl, palette) + hl.CursorLineNr = { fg = palette.yellow, bg = palette.none} + end, + }) vim.cmd.colorscheme "everforest" end } |