.dotfiles/global/.config/nvim/lua/plugins/everforest.lua
2024-08-18 16:57:33 +02:00

11 lines
266 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,
}