This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/plugins/autojump/autojump.plugin.zsh

9 lines
306 B
Bash
Raw Normal View History

2011-08-30 23:16:15 -04:00
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"
2011-05-19 10:20:30 -04:00
fi
2011-08-30 23:16:15 -04:00