1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-17 07:52:47 +01:00
nixvim/colorschemes/github-theme/default.nix
2025-11-09 12:29:06 +00:00

22 lines
375 B
Nix

{
lib,
...
}:
lib.nixvim.plugins.mkNeovimPlugin {
name = "github-theme";
package = "github-nvim-theme";
isColorscheme = true;
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
options = {
transparent = true;
dim_inactive = true;
styles = {
comments = "italic";
keywords = "bold";
};
};
};
}