mirror of https://github.com/LazyVim/starter
20 lines
290 B
Lua
20 lines
290 B
Lua
|
return {
|
||
|
{
|
||
|
"neanias/everforest-nvim",
|
||
|
opts = {
|
||
|
priority = 1000,
|
||
|
},
|
||
|
config = function()
|
||
|
require("everforest").setup({
|
||
|
-- background = "soft",
|
||
|
})
|
||
|
end,
|
||
|
},
|
||
|
{
|
||
|
"LazyVim/LazyVim",
|
||
|
opts = {
|
||
|
colorscheme = "everforest",
|
||
|
},
|
||
|
},
|
||
|
}
|