NixOS/nvim/lua/plugins/everforest.lua
2026-02-15 11:10:32 -05:00

11 lines
319 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
}