Files
nvim/lua/plugins/theme.lua

13 lines
358 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.
2025-11-27 15:46:51 +08:00
vim.g.everforest_enable_italic = false
vim.g.everforest_disable_italic_comment = 1
2025-11-27 14:40:06 +08:00
vim.cmd.colorscheme("everforest")
2025-11-27 14:26:21 +08:00
end,
}