From 96e3d3579cbda811f626d0c6ca55c1ebc7e7c4d7 Mon Sep 17 00:00:00 2001 From: taylrfnt Date: Tue, 27 Jan 2026 20:25:48 -0600 Subject: [PATCH 1/2] theme: solarized-osaka update npins & style opt --- modules/plugins/theme/supported-themes.nix | 8 +++++++- npins/sources.json | 6 +++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/modules/plugins/theme/supported-themes.nix b/modules/plugins/theme/supported-themes.nix index c2a5e1ca..f7d9b6c4 100644 --- a/modules/plugins/theme/supported-themes.nix +++ b/modules/plugins/theme/supported-themes.nix @@ -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 = { diff --git a/npins/sources.json b/npins/sources.json index 9bbcb6ff..41c8b7e6 100644 --- a/npins/sources.json +++ b/npins/sources.json @@ -2498,9 +2498,9 @@ }, "branch": "main", "submodules": false, - "revision": "f796014c14b1910e08d42cc2077fef34f08e0295", - "url": "https://github.com/craftzdog/solarized-osaka.nvim/archive/f796014c14b1910e08d42cc2077fef34f08e0295.tar.gz", - "hash": "sha256-JuIeLpkF7jBCI/wrO3RQPtKbso57eTBglCAI5siEwks=" + "revision": "5dd1969a7492f3a2c0fde5d9d2472aa751c44d3b", + "url": "https://github.com/craftzdog/solarized-osaka.nvim/archive/5dd1969a7492f3a2c0fde5d9d2472aa751c44d3b.tar.gz", + "hash": "sha256-bEHBXw7ufHOrqw/frbBSaLv7Kr8F6BK2B7E83dKAsHk=" }, "sqls-nvim": { "type": "Git", From 4156f72aa41f5acc77581fe85f945719261db597 Mon Sep 17 00:00:00 2001 From: taylrfnt Date: Tue, 27 Jan 2026 21:32:32 -0600 Subject: [PATCH 2/2] changelog: update solarized-osaka style info --- docs/manual/release-notes/rl-0.9.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/manual/release-notes/rl-0.9.md b/docs/manual/release-notes/rl-0.9.md index 7585c3b5..a5de2481 100644 --- a/docs/manual/release-notes/rl-0.9.md +++ b/docs/manual/release-notes/rl-0.9.md @@ -38,6 +38,10 @@ (class: "nixos") cannot be imported into a module evaluation that expects class "darwin". ``` +- Add support for `solarized-osaka` style options. The default style (named + `default`) was previously applied without user specification. The addition of + the `light` style now requires users to specify if they want to use `default` + or `light`. [suimong](https://github.com/suimong):