1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

colorschemes/solarized-osaka: init

This commit is contained in:
Gaetan Lepage 2025-06-14 15:46:52 +02:00 committed by Gaétan Lepage
parent ab0a3682cc
commit be49587a24
3 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{
lib,
...
}:
lib.nixvim.plugins.mkNeovimPlugin {
name = "solarized-osaka";
isColorscheme = true;
packPathName = "solarized-osaka.nvim";
package = "solarized-osaka-nvim";
colorscheme = "solarized-osaka";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
transparent = false;
styles = {
comments.italic = true;
keywords.italic = false;
floats = "transparent";
};
};
}