diff options
Diffstat (limited to 'hosts/common.nix')
-rw-r--r-- | hosts/common.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hosts/common.nix b/hosts/common.nix index 3817a62..f18c062 100644 --- a/hosts/common.nix +++ b/hosts/common.nix @@ -39,5 +39,15 @@ "grep" = "grep --color=auto"; "file" = "file --no-dereference"; "tree" = "tree --dirsfirst"; + + ".." = "cd ../"; + "..." = "cd ../../"; + "...." = "cd ../../../"; + "....." = "cd ../../../../"; + "......" = "cd ../../../../../"; + "......." = "cd ../../../../../../"; + "........" = "cd ../../../../../../../"; + "........." = "cd ../../../../../../../../"; + ".........." = "cd ../../../../../../../../../"; }; } |