mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
15 lines
225 B
Nix
15 lines
225 B
Nix
{
|
|
empty = {
|
|
plugins.mini-git.enable = true;
|
|
};
|
|
|
|
example = {
|
|
plugins.mini-git = {
|
|
enable = true;
|
|
settings = {
|
|
job.timeout = 20000;
|
|
command.split = "horizontal";
|
|
};
|
|
};
|
|
};
|
|
}
|