Skip to content

Commit

Permalink
fix: Update aliases for managing directories in .zshrc
Browse files Browse the repository at this point in the history
  • Loading branch information
Goran Ninkovic committed May 24, 2024
1 parent 42330a9 commit 935478c
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ setopt pushd_ignore_dups
setopt pushdminus


alias -g ...='../..'
alias -g ....='../../..'
alias -g .....='../../../..'
alias -g ......='../../../../..'
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias .....='cd ../../../..'
alias ......='cd ../../../../..'

alias -- -='cd -'
alias 1='cd -1'
Expand Down

0 comments on commit 935478c

Please sign in to comment.