mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
23 lines
437 B
Nix
23 lines
437 B
Nix
|
{
|
||
|
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";
|
||
|
};
|
||
|
};
|
||
|
}
|