dotfiles/nvim/lua/plugins/theme.lua
2025-08-27 00:21:04 -06:00

10 lines
208 B
Lua

return {
'sainnhe/everforest',
lazy = false,
priority = 1000,
config = function()
vim.g.everforest_enable_italic = true
vim.g.everforest_background = 'hard'
vim.cmd.colorscheme('everforest')
end
}