From b3b96c3163a062e0becc583f080a85104b89579f Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.dev>
Date: Wed, 19 Jun 2024 22:02:20 +0100
Subject: [PATCH] Add navigation aliases

---
 lib/shared/modules/zsh.nix | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/lib/shared/modules/zsh.nix b/lib/shared/modules/zsh.nix
index 7414c32f..9746cedd 100644
--- a/lib/shared/modules/zsh.nix
+++ b/lib/shared/modules/zsh.nix
@@ -7,6 +7,11 @@
     dotDir = ".config/zsh";
 
     shellAliases = {
+      "-" = "cd -";
+      ".." = "cd ..";
+      "..." = "cd ../..";
+      "...." = "cd ../../..";
+      "....." = "cd ../../../..";
       dea = "direnv allow";
       dee = "direnv edit";
       cat = "bat";