This commit is contained in:
Taylor Font 2026-02-03 17:46:18 -05:00 committed by GitHub
commit 10f052ebe6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 4 deletions

View file

@ -284,8 +284,13 @@ in {
};
solarized-osaka = {
setup = {transparent ? false, ...}: ''
setup = {
style ? "default",
transparent ? false,
...
}: ''
require("solarized-osaka").setup({
style = "${style}",
transparent = ${boolToString transparent},
styles = {
comments = { italic = false },
@ -295,6 +300,7 @@ in {
vim.cmd.colorscheme("solarized-osaka")
'';
styles = ["default" "light"];
};
everforest = {