Skip to content

Instantly share code, notes, and snippets.

@cofirazak
Last active March 28, 2020 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cofirazak/755d48426c8c2bfb7f754a896ae207d2 to your computer and use it in GitHub Desktop.
Save cofirazak/755d48426c8c2bfb7f754a896ae207d2 to your computer and use it in GitHub Desktop.
I use oh-my-zsh alias-finder plugin with ZSH_ALIAS_FINDER_AUTOMATIC=true. And don't use cd -n. So I comment lines 11-20:
# Changing/making/removing directory
setopt auto_pushd
setopt pushd_ignore_dups
setopt pushdminus
alias -g ...='../..'
alias -g ....='../../..'
alias -g .....='../../../..'
alias -g ......='../../../../..'
#alias -- -='cd -'
#alias 1='cd -'
#alias 2='cd -2'
#alias 3='cd -3'
#alias 4='cd -4'
#alias 5='cd -5'
#alias 6='cd -6'
#alias 7='cd -7'
#alias 8='cd -8'
#alias 9='cd -9'
alias md='mkdir -p'
alias rd=rmdir
function d () {
if [[ -n $1 ]]; then
dirs "$@"
else
dirs -v | head -10
fi
}
compdef _dirs d
# List directory contents
alias lsa='ls -lah'
alias l='ls -lah'
alias ll='ls -lh'
alias la='ls -lAh'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment