.dotfiles/global/.config/nvim/lua/plugins/everforest.lua
2024-09-08 19:25:52 +02:00

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