diff options
Diffstat (limited to 'common/commandline/fish.nix')
-rw-r--r-- | common/commandline/fish.nix | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/common/commandline/fish.nix b/common/commandline/fish.nix index dabe819..4c3d5c6 100644 --- a/common/commandline/fish.nix +++ b/common/commandline/fish.nix | |||
@@ -7,9 +7,34 @@ | |||
7 | interactiveShellInit = builtins.readFile ./fish.fish; | 7 | interactiveShellInit = builtins.readFile ./fish.fish; |
8 | 8 | ||
9 | shellAbbrs = { | 9 | shellAbbrs = { |
10 | o = "xdg-open"; | 10 | o = "open"; |
11 | cpr = "rsync -ah --inplace --info=progress2"; | 11 | cpr = "rsync -ah --inplace --info=progress2"; |
12 | 12 | ||
13 | # Jujutsu | ||
14 | # ======= | ||
15 | |||
16 | ja = "jj absorb"; | ||
17 | |||
18 | jb = "jj bookmark"; | ||
19 | jbc = "jj bookmark create"; | ||
20 | jbl = "jj bookmark list"; | ||
21 | jbm = "jj bookmark move"; | ||
22 | jbt = "jj bookmark track"; | ||
23 | |||
24 | jc = "jj commit"; | ||
25 | jcs = "jj show"; | ||
26 | jde = "jj desc"; | ||
27 | jed = "jj edit"; | ||
28 | jl = "jj log"; | ||
29 | jn = "jj new"; | ||
30 | jr = "jj rebase"; | ||
31 | ju = "jj undo"; | ||
32 | |||
33 | jf = "jj git fetch"; | ||
34 | jfc = "jj git clone --colocate"; | ||
35 | ji = "jj git init --colocate"; | ||
36 | jp = "jj git push"; | ||
37 | |||
13 | # Git | 38 | # Git |
14 | # === | 39 | # === |
15 | 40 | ||