This commit is contained in:
Taylor Font 2026-03-23 12:06:13 -04:00 committed by GitHub
commit af20ed6ba9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 4 deletions

View file

@ -307,8 +307,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 },
@ -318,6 +323,7 @@ in {
vim.cmd.colorscheme("solarized-osaka")
'';
styles = ["default" "light"];
};
everforest = {