2012-01-10 09:01:16 +00:00
|
|
|
if [ $commands[autojump] ]; then # check if autojump is installed
|
2013-10-25 23:17:21 +00:00
|
|
|
if [ -f $HOME/.autojump/etc/profile.d/autojump.zsh ]; then # manual user-local installation
|
|
|
|
. $HOME/.autojump/etc/profile.d/autojump.zsh
|
2014-12-04 03:38:37 +00:00
|
|
|
elif [ -f $HOME/.autojump/share/autojump/autojump.zsh ]; then # another manual user-local installation
|
|
|
|
. $HOME/.autojump/share/autojump/autojump.zsh
|
2014-01-19 19:10:16 +00:00
|
|
|
elif [ -f $HOME/.nix-profile/etc/profile.d/autojump.zsh ]; then # nix installation
|
|
|
|
. $HOME/.nix-profile/etc/profile.d/autojump.zsh
|
2013-10-25 23:17:21 +00:00
|
|
|
elif [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package
|
2012-01-10 09:01:16 +00:00
|
|
|
. /usr/share/autojump/autojump.zsh
|
|
|
|
elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation
|
|
|
|
. /etc/profile.d/autojump.zsh
|
2013-05-09 09:12:11 +00:00
|
|
|
elif [ -f /etc/profile.d/autojump.sh ]; then # gentoo installation
|
|
|
|
. /etc/profile.d/autojump.sh
|
2013-11-29 10:34:12 +00:00
|
|
|
elif [ -f /usr/local/share/autojump/autojump.zsh ]; then # freebsd installation
|
|
|
|
. /usr/local/share/autojump/autojump.zsh
|
2012-09-21 05:08:53 +00:00
|
|
|
elif [ -f /opt/local/etc/profile.d/autojump.zsh ]; then # mac os x with ports
|
|
|
|
. /opt/local/etc/profile.d/autojump.zsh
|
2015-08-25 21:05:28 +00:00
|
|
|
elif [ $commands[brew] -a -f `brew --prefix`/etc/autojump.sh ]; then # mac os x with brew
|
|
|
|
. `brew --prefix`/etc/autojump.sh
|
2012-01-03 17:03:53 +00:00
|
|
|
fi
|
2011-05-19 14:20:30 +00:00
|
|
|
fi
|