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" "@-"]; + }; }; }; }