1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-18 00:12:48 +01:00

colorschemes/github-theme: migrate to by-name

This commit is contained in:
Heitor Augusto 2025-11-02 19:46:40 -03:00 committed by Gaétan Lepage
parent ca0647f56c
commit 59760ce0c0
3 changed files with 0 additions and 1 deletions

View file

@ -0,0 +1,22 @@
{
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";
};
};
};
}