nix-community.nixvim/plugins/colorschemes/github-theme.nix
2025-04-06 17:03:26 +02:00

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";
};
};
};
}