This commit is contained in:
Heitor Augusto 2025-06-20 13:22:22 +00:00 committed by GitHub
commit 9accbbff24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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";
};
};
};
}