From e690f17ff8f6d3a270b9a75fbec8cb0c829ed2bd Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Tue, 11 Jun 2024 00:33:17 +0200 Subject: [PATCH] Add cd .. aliases to zshrc --- zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 8e9420a..6be7eaf 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -30,6 +30,9 @@ alias ls='ls --color=auto' alias grep='grep --color=auto' alias ll='ls -l' alias la='ls -la' +alias ..="cd .." +alias ...="cd ../.." +alias ....="cd ../../.." export PATH=$PATH:/home/andreas/.local/bin export EDITOR=nvim