diff options
| author | awy <awy@awy.one> | 2025-11-21 13:00:43 +0300 |
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-21 13:00:43 +0300 |
| commit | f55fd83d05a7435c574d20d67a110d27b19f6beb (patch) | |
| tree | ffcd2a5a2fcefd67646961ab28d3bebcde2d0db3 /.config/nvim/lua/plugins/theme.lua | |
| parent | bccf11641387327e57f9a940b79e8613a028da89 (diff) | |
| download | hyprdots-f55fd83d05a7435c574d20d67a110d27b19f6beb.tar.gz | |
yyyyyyyyyy
Diffstat (limited to '.config/nvim/lua/plugins/theme.lua')
| -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 } |