themes/everforest: init

https://github.com/sainnhe/everforest
This commit is contained in:
poz 2025-07-19 02:00:31 +02:00
commit 5651ca05fd
No known key found for this signature in database
3 changed files with 38 additions and 0 deletions

View file

@ -281,4 +281,23 @@ in {
vim.cmd.colorscheme("solarized-osaka")
'';
};
everforest = {
setup = {
style ? "medium",
transparent ? false,
...
}: ''
vim.g.everforest_background = "${style}"
vim.g.everforest_transparent_background = ${
if transparent
then "1"
else "0"
}
vim.cmd.colorscheme("everforest")
'';
styles = ["hard" "medium" "soft"];
};
}