From a6c953d69d291bea12d6a0346fd642212393a80a Mon Sep 17 00:00:00 2001 From: sloane Date: Tue, 4 Nov 2025 08:41:52 -0500 Subject: [PATCH] add jj status abbreviation and make jj init colocate by default --- home-manager/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home-manager/default.nix b/home-manager/default.nix index 7dce3cf..e758011 100644 --- a/home-manager/default.nix +++ b/home-manager/default.nix @@ -69,6 +69,7 @@ shellAbbrs = { drs = "darwin-rebuild switch --flake ~/.config/nix-darwin"; j = "jj"; + jst = "jj status"; cat = "bat"; }; }; @@ -246,7 +247,7 @@ tug = ["bookmark" "move" "--from" "closest_bookmark(@-)" "--to" "@-"]; catchup = ["rebase" "-b" "current" "-d" "trunk()" "--skip-emptied"]; changed = ["diff" "--files-only"]; - init = ["git" "init"]; + init = ["git" "init" "--colocate"]; }; }; };