colors.toml and icons.theme were copy-pasted from summer-night (a dark theme). Repalette to Everforest Light, mark as light via light.mode, switch icons to Yaru-blue, fix the broken Waybar import, and add the btop/neovim/vscode/rofi/walker app configs the sibling themes ship. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
17 lines
229 B
Lua
17 lines
229 B
Lua
return {
|
|
{ "neanias/everforest-nvim" },
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "everforest",
|
|
background = "soft",
|
|
},
|
|
},
|
|
{
|
|
"LazyVim/LazyVim",
|
|
init = function()
|
|
vim.opt.background = "light"
|
|
end,
|
|
},
|
|
}
|