aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua
diff options
context:
space:
mode:
authorawy <awy@awy.one>2025-11-21 13:00:43 +0300
committerawy <awy@awy.one>2025-11-21 13:00:43 +0300
commitf55fd83d05a7435c574d20d67a110d27b19f6beb (patch)
treeffcd2a5a2fcefd67646961ab28d3bebcde2d0db3 /.config/nvim/lua
parentbccf11641387327e57f9a940b79e8613a028da89 (diff)
downloadhyprdots-f55fd83d05a7435c574d20d67a110d27b19f6beb.tar.gz
yyyyyyyyyy
Diffstat (limited to '.config/nvim/lua')
-rw-r--r--.config/nvim/lua/plugins/theme.lua5
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
}