From bd2b9420017cc018fd3d281ec568cc1009fbbfc3 Mon Sep 17 00:00:00 2001 From: Joshua Yuen Date: Mon, 28 Jul 2025 15:29:36 -0400 Subject: [PATCH] Fix zsh aliases --- modules/home/zsh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home/zsh/default.nix b/modules/home/zsh/default.nix index 105ab29..33c6632 100644 --- a/modules/home/zsh/default.nix +++ b/modules/home/zsh/default.nix @@ -46,8 +46,8 @@ in ''; shellAliases = { - ".. " = "cd .."; - "..." = "cd../.."; + ".." = "cd .."; + "..." = "cd ../.."; ls = "ls --color=auto"; ll = "ls -al"; grep = "grep --color=auto";