mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-02-05 03:15:53 +00:00
Merge 4156f72aa4 into 92854bd0ea
This commit is contained in:
commit
10f052ebe6
3 changed files with 14 additions and 4 deletions
|
|
@ -44,6 +44,10 @@
|
||||||
(class: "nixos") cannot be imported into a module
|
(class: "nixos") cannot be imported into a module
|
||||||
evaluation that expects class "darwin".
|
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):
|
[suimong](https://github.com/suimong):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -284,8 +284,13 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
solarized-osaka = {
|
solarized-osaka = {
|
||||||
setup = {transparent ? false, ...}: ''
|
setup = {
|
||||||
|
style ? "default",
|
||||||
|
transparent ? false,
|
||||||
|
...
|
||||||
|
}: ''
|
||||||
require("solarized-osaka").setup({
|
require("solarized-osaka").setup({
|
||||||
|
style = "${style}",
|
||||||
transparent = ${boolToString transparent},
|
transparent = ${boolToString transparent},
|
||||||
styles = {
|
styles = {
|
||||||
comments = { italic = false },
|
comments = { italic = false },
|
||||||
|
|
@ -295,6 +300,7 @@ in {
|
||||||
|
|
||||||
vim.cmd.colorscheme("solarized-osaka")
|
vim.cmd.colorscheme("solarized-osaka")
|
||||||
'';
|
'';
|
||||||
|
styles = ["default" "light"];
|
||||||
};
|
};
|
||||||
|
|
||||||
everforest = {
|
everforest = {
|
||||||
|
|
|
||||||
|
|
@ -2498,9 +2498,9 @@
|
||||||
},
|
},
|
||||||
"branch": "main",
|
"branch": "main",
|
||||||
"submodules": false,
|
"submodules": false,
|
||||||
"revision": "f796014c14b1910e08d42cc2077fef34f08e0295",
|
"revision": "5dd1969a7492f3a2c0fde5d9d2472aa751c44d3b",
|
||||||
"url": "https://github.com/craftzdog/solarized-osaka.nvim/archive/f796014c14b1910e08d42cc2077fef34f08e0295.tar.gz",
|
"url": "https://github.com/craftzdog/solarized-osaka.nvim/archive/5dd1969a7492f3a2c0fde5d9d2472aa751c44d3b.tar.gz",
|
||||||
"hash": "sha256-JuIeLpkF7jBCI/wrO3RQPtKbso57eTBglCAI5siEwks="
|
"hash": "sha256-bEHBXw7ufHOrqw/frbBSaLv7Kr8F6BK2B7E83dKAsHk="
|
||||||
},
|
},
|
||||||
"sqls-nvim": {
|
"sqls-nvim": {
|
||||||
"type": "Git",
|
"type": "Git",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue