plugins/mini-git: init

This commit is contained in:
Heitor Augusto 2025-05-25 15:47:26 -03:00 committed by Austin Horstman
parent 5aa94389c1
commit c59fad7efb
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";
};
}