From a29770fd01b506950ba14255a392674b9b44ceb8 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sat, 5 Jul 2025 00:02:39 +0200 Subject: [PATCH] feat(jujutsu): update my config with new aliases --- users/modules/vcs/jujutsu.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/users/modules/vcs/jujutsu.nix b/users/modules/vcs/jujutsu.nix index 487ab0c..66dd986 100644 --- a/users/modules/vcs/jujutsu.nix +++ b/users/modules/vcs/jujutsu.nix @@ -41,6 +41,7 @@ in { ui = { default-command = "st"; pager = ":builtin"; + show-cryptographic-signatures = true; inherit (cfg) editor; }; signing = mkIf cfg.signing.enable { @@ -50,6 +51,13 @@ in { backends."ssh.allowed-signers" = "~/.ssh/allowed_signers"; backends."ssh.program" = "${pkgs.openssh}/bin/ssh-keygen"; }; + aliases = { + l = ["log"]; + lc = ["log" "-r" "(remote_bookmarks()..@)::"]; + n = ["new"]; + dm = ["desc" "-m"]; + tug = ["bookmark" "move" "--from" "heads(::@- & bookmarks())" "--to" "@-"]; + }; }; }; }