Skip to content

Commit c59fad7

Browse files
HeitorAugustoLNkhaneliman
authored andcommitted
plugins/mini-git: init
1 parent 5aa9438 commit c59fad7

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

plugins/by-name/mini-git/default.nix

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{ lib, ... }:
2+
lib.nixvim.plugins.mkNeovimPlugin {
3+
name = "mini-git";
4+
moduleName = "mini.git";
5+
packPathName = "mini.git";
6+
7+
maintainers = [ lib.maintainers.HeitorAugustoLN ];
8+
9+
dependencies = [ "git" ];
10+
11+
settingsExample = {
12+
job.timeout = 20000;
13+
command.split = "horizontal";
14+
};
15+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
empty = {
3+
plugins.mini-git.enable = true;
4+
};
5+
6+
example = {
7+
plugins.mini-git = {
8+
enable = true;
9+
settings = {
10+
job.timeout = 20000;
11+
command.split = "horizontal";
12+
};
13+
};
14+
};
15+
}

0 commit comments

Comments
 (0)