diff --git a/home/default.nix b/home/default.nix index 0331583..5a8f01b 100644 --- a/home/default.nix +++ b/home/default.nix @@ -198,6 +198,20 @@ in enable = true; settings = { ui.pager = "bat"; + # mimic git commit --verbose by adding a diff + templates.draft_commit_description = '' + concat( + description, + surround( + "\nJJ: This commit contains the following changes:\n", "", + indent("JJ: ", diff.stat()), + ), + surround( + "\nJJ: Diff:\n", "", + indent("JJ: ", diff.git()), + ), + ) + ''; }; }; };