We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd40a82 commit a575b9bCopy full SHA for a575b9b
home-manager/git.nix
@@ -1,15 +1,11 @@
1
{
2
+ programs.difftastic.git.enable = true;
3
4
programs.git = {
- difftastic.enable = true;
5
enable = true;
6
- userEmail = "[email protected]";
7
- userName = "Ross Smyth";
8
- aliases = {
9
- amend = "commit --amend --no-edit";
10
- cm = "commit -m";
11
- };
12
- extraConfig = {
+
+ settings = {
+ user.name = "Ross Smyth";
13
push = {
14
default = "current";
15
followTags = true;
home-manager/jujutsu.nix
@@ -30,7 +30,7 @@
30
};
31
diff.tool = "difft";
32
merge-tools.difft = {
33
- program = lib.getExe config.programs.git.difftastic.package;
+ program = lib.getExe config.programs.difftastic.package;
34
diff-args = [
35
"--color=always"
36
"$left"
0 commit comments