mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
23 lines
413 B
Nix
23 lines
413 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "github-theme";
|
|
packPathName = "github-nvim-theme";
|
|
package = "github-nvim-theme";
|
|
isColorscheme = true;
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
settingsExample = {
|
|
options = {
|
|
transparent = true;
|
|
dim_inactive = true;
|
|
styles = {
|
|
comments = "italic";
|
|
keywords = "bold";
|
|
};
|
|
};
|
|
};
|
|
}
|