Skip to content

Commit a504f6e

Browse files
committed
plugins/gitgutter: add tests
1 parent b6d9638 commit a504f6e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{ lib, pkgs, ... }:
2+
{
3+
empty = {
4+
plugins.gitgutter.enable = true;
5+
};
6+
7+
grep-command = {
8+
plugins.gitgutter = {
9+
enable = true;
10+
grep = {
11+
package = pkgs.gnugrep;
12+
command = "";
13+
};
14+
};
15+
};
16+
17+
no-packages = {
18+
globals.gitgutter_git_executable = lib.getExe pkgs.git;
19+
plugins.gitgutter = {
20+
enable = true;
21+
gitPackage = null;
22+
};
23+
};
24+
}

0 commit comments

Comments
 (0)