You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
618 B
26 lines
618 B
13 years ago
|
#
|
||
|
# Maintains a frequently used directory list for fast directory changes.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
#
|
||
13 years ago
|
|
||
|
if [[ -f /etc/profile.d/z.zsh ]]; then
|
||
|
source /etc/profile.d/z.zsh
|
||
|
elif [[ -f /opt/local/etc/profile.d/z.zsh ]]; then
|
||
|
source /opt/local/etc/profile.d/z.zsh
|
||
|
elif [[ -f "$(brew --prefix 2> /dev/null)/etc/profile.d/z.sh" ]]; then
|
||
|
source "$(brew --prefix 2> /dev/null)/etc/profile.d/z.sh"
|
||
|
fi
|
||
|
|
||
|
if (( $+functions[_z] )); then
|
||
|
alias z='nocorrect _z 2>&1'
|
||
|
alias j='z'
|
||
13 years ago
|
function z-precmd {
|
||
13 years ago
|
z --add "$(pwd -P)"
|
||
|
}
|
||
|
autoload -Uz add-zsh-hook
|
||
|
add-zsh-hook precmd z-precmd
|
||
|
fi
|
||
|
|