From 662c093024b5d44c0ac44981b41166929d158338 Mon Sep 17 00:00:00 2001 From: Random936 Date: Fri, 21 Jun 2024 20:05:35 -0700 Subject: [PATCH] Added .+ aliases to zsh.nix --- home-manager/zsh.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/home-manager/zsh.nix b/home-manager/zsh.nix index 5fb0139..99da6e9 100644 --- a/home-manager/zsh.nix +++ b/home-manager/zsh.nix @@ -22,6 +22,12 @@ initExtra = '' export PATH=$PATH:~/.cargo/bin + function .. { cd .. } + function ... { cd ../.. } + function .... { cd ../../.. } + function ..... { cd ../../../../.. } + function ...... { cd ../../../../../.. } + function ....... { cd ../../../../../../.. } ''; plugins = [