feat(jujutsu): update my config with new aliases

This commit is contained in:
Lucien Cartier-Tilet 2025-07-05 00:02:39 +02:00
parent 13723ef4d1
commit a29770fd01
No known key found for this signature in database

View File

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