Files
nvim/lua/plugins/theme.lua
2025-11-27 14:40:06 +08:00

12 lines
305 B
Lua

return {
"sainnhe/everforest",
lazy = false,
priority = 1000,
config = function()
-- Optionally configure and load the colorscheme
-- directly inside the plugin declaration.
vim.g.everforest_enable_italic = true
vim.cmd.colorscheme("everforest")
end,
}