dotfiles/.config/nvim/lua/plugins/everforest.lua

13 lines
310 B
Lua
Raw Normal View History

2024-08-07 05:36:20 +00:00
return {
"neanias/everforest-nvim",
version = false,
lazy = false,
priority = 1000, -- make sure to load this before all the other start plugins
-- Optional; default configuration will be used if setup isn't called.
config = function()
require("everforest").setup({
-- Your config here
})
end,
}