mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-15 00:41:11 +00:00
9 lines
306 B
Bash
9 lines
306 B
Bash
if [[ -f /etc/profile.d/autojump.zsh ]]; then
|
|
source /etc/profile.d/autojump.zsh
|
|
elif [[ -f /opt/local/etc/profile.d/autojump.zsh ]]; then
|
|
source /opt/local/etc/profile.d/autojump.zsh
|
|
elif [[ -f "$(brew --prefix 2> /dev/null)/etc/autojump.zsh" ]]; then
|
|
source "$(brew --prefix)/etc/autojump.zsh"
|
|
fi
|
|
|