Files
2025-09-27 23:49:59 +00:00

15 lines
270 B
Nix

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