diff --git a/home/c/programs/jj/default.nix b/home/c/programs/jj/default.nix index 9c166e7..8c269f5 100644 --- a/home/c/programs/jj/default.nix +++ b/home/c/programs/jj/default.nix @@ -10,6 +10,15 @@ behavior = "own"; backend = "gpg"; }; + + ui = { + pager = "delta"; + diff-formatter = ":git"; + }; + git = { + private-commits = "description(glob:'wip:*') | description(glob:'private:*') | description(glob:'fixup*:*')"; + }; + "--scope" = [ { "--when".repositories = ["~/repos/projects.cs.nott.ac.uk"]; @@ -17,6 +26,10 @@ email = "psycl6@nottingham.ac.uk"; }; } + { + "--when".commands = ["status"]; + ui.paginate = "never"; + } ]; }; };