mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-05 02:26:15 +02:00
22 lines
437 B
Nix
22 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";
|
|
};
|
|
};
|
|
}
|