From f6a5d3459da4c07851fa6c1afcb677471eee74ef Mon Sep 17 00:00:00 2001 From: liv Date: Thu, 12 Sep 2024 09:53:48 +0200 Subject: [PATCH] add some jujutsu aliases to fish config --- home/features/cli/fish.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/home/features/cli/fish.nix b/home/features/cli/fish.nix index 5ae75a9..96203f4 100644 --- a/home/features/cli/fish.nix +++ b/home/features/cli/fish.nix @@ -87,6 +87,16 @@ gco = "git checkout"; editorigin = "git remote set-url origin"; + # jj aliases + jst = "jj st"; + jd = "jj describe"; + jl = "jj log"; + jprev = "jj edit @-"; + jnext = "jj edit @+"; + jbm = "jj branch move"; + jgp = "jj git push"; + jdiff = "jj diff"; + # nix aliases n = "nix"; nd = "nix develop";