Merge branch 'main' into v0.8

This commit is contained in:
raf 2025-07-19 03:20:00 +03:00 committed by GitHub
commit 36a1d81675
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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"];
};
}