12.nixvim/colorschemes/github-theme/default.nix
Sizhe Zhao 3568897008 colorschemes/github-theme: set colorscheme
(cherry picked from commit 1787eeda5a)
2025-12-23 02:02:59 +00:00

23 lines
406 B
Nix

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