Files
nvim/lua/plugins/theme.lua
2025-11-27 15:46:51 +08:00

13 lines
358 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 = false
vim.g.everforest_disable_italic_comment = 1
vim.cmd.colorscheme("everforest")
end,
}