This commit is contained in:
Taylor Font 2026-03-02 21:01:05 +02:00 committed by GitHub
commit ac2e066eea
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 = {