Files
nvim/lua/plugins/theme.lua

12 lines
305 B
Lua
Raw Normal View History

2025-11-27 14:26:21 +08:00
return {
2025-11-27 14:40:06 +08:00
"sainnhe/everforest",
lazy = false,
priority = 1000,
2025-11-27 14:26:21 +08:00
config = function()
2025-11-27 14:40:06 +08:00
-- Optionally configure and load the colorscheme
-- directly inside the plugin declaration.
vim.g.everforest_enable_italic = true
vim.cmd.colorscheme("everforest")
2025-11-27 14:26:21 +08:00
end,
}