16 lines
401 B
Lua
16 lines
401 B
Lua
return {
|
|
'neanias/everforest-nvim',
|
|
version = false,
|
|
lazy = true,
|
|
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({
|
|
background = 'hard',
|
|
-- Your config here
|
|
})
|
|
require('everforest').load()
|
|
end,
|
|
enabled = true,
|
|
}
|