mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
Dot-env is a cross-platform, cascading Zsh environment system for those who work on different hardware and OS environments. See: https://github.com/midwire/.env
8 lines
174 B
Bash
8 lines
174 B
Bash
# ChDir aliases
|
|
alias ..='cd ..'
|
|
alias ...='cd ../..'
|
|
alias 1..='cd ..'
|
|
alias 2..='cd ../..'
|
|
alias 3..='cd ../../..'
|
|
alias 4..='cd ../../../..'
|
|
alias 5..='cd ../../../../..'
|