2012-01-10 10:01:16 +01:00
|
|
|
if [ $commands[autojump] ]; then # check if autojump is installed
|
|
|
|
if [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package
|
|
|
|
. /usr/share/autojump/autojump.zsh
|
|
|
|
elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation
|
|
|
|
. /etc/profile.d/autojump.zsh
|
2013-05-09 11:12:11 +02:00
|
|
|
elif [ -f /etc/profile.d/autojump.sh ]; then # gentoo installation
|
|
|
|
. /etc/profile.d/autojump.sh
|
2012-09-26 15:16:15 +02:00
|
|
|
elif [ -f $HOME/.autojump/etc/profile.d/autojump.zsh ]; then # manual user-local installation
|
|
|
|
. $HOME/.autojump/etc/profile.d/autojump.zsh
|
2012-09-21 07:08:53 +02:00
|
|
|
elif [ -f /opt/local/etc/profile.d/autojump.zsh ]; then # mac os x with ports
|
|
|
|
. /opt/local/etc/profile.d/autojump.zsh
|
2012-11-06 22:38:08 +01:00
|
|
|
elif [ $commands[brew] -a -f `brew --prefix`/etc/autojump.zsh ]; then # mac os x with brew
|
|
|
|
. `brew --prefix`/etc/autojump.zsh
|
2012-01-03 18:03:53 +01:00
|
|
|
fi
|
2011-05-19 16:20:30 +02:00
|
|
|
fi
|