From d28c0fce6635628e0f1311e363aee94907a0c83a Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Wed, 24 Sep 2025 18:32:05 +0200 Subject: [PATCH] Refactor shell aliases to move folder navigation aliases to the utility section --- config/bash.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/config/bash.nix b/config/bash.nix index 0aa3066..d13a96b 100644 --- a/config/bash.nix +++ b/config/bash.nix @@ -137,12 +137,6 @@ # Shell aliases shellAliases = { - # Folder navigation - # "." = "cd ."; - # ".." = "cd .."; - # "..." = "cd ../.."; - # "...." = "cd ../../.."; - # Docker Compose alias (for old scripts) "docker-compose" = "docker compose"; @@ -197,6 +191,11 @@ # Utility aliases "random" = "openssl rand -base64"; + + # Folder navigation + ".." = "cd .."; + "..." = "cd ../.."; + "...." = "cd ../../.."; }; # Profile extra (runs for login shells)