Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/manual/release-notes/rl-0.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):

Expand Down
8 changes: 7 additions & 1 deletion modules/plugins/theme/supported-themes.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand All @@ -295,6 +300,7 @@ in {

vim.cmd.colorscheme("solarized-osaka")
'';
styles = ["default" "light"];
};

everforest = {
Expand Down
6 changes: 3 additions & 3 deletions npins/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down