plugins/mini-git: init

This commit is contained in:
Heitor Augusto 2025-05-25 15:47:26 -03:00
parent 1c5c991fda
commit 9a374c7b75
No known key found for this signature in database
GPG key ID: 53C04F8F46A1A344
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-git";
moduleName = "mini.git";
packPathName = "mini.git";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
dependencies = [ "git" ];
settingsExample = {
job.timeout = 20000;
command.split = "horizontal";
};
}

View file

@ -0,0 +1,15 @@
{
empty = {
plugins.mini-git.enable = true;
};
example = {
plugins.mini-git = {
enable = true;
settings = {
job.timeout = 20000;
command.split = "horizontal";
};
};
};
}