mirror of
https://github.com/nix-community/nixvim.git
synced 2026-09-24 23:39:45 -05:00
plugins/mini-git: init
This commit is contained in:
committed by
Austin Horstman
parent
5aa94389c1
commit
c59fad7efb
@@ -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";
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
empty = {
|
||||
plugins.mini-git.enable = true;
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.mini-git = {
|
||||
enable = true;
|
||||
settings = {
|
||||
job.timeout = 20000;
|
||||
command.split = "horizontal";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user