2012-01-10 10:01:16 +01:00
|
|
|
if [ $commands[autojump] ]; then # check if autojump is installed
|
2013-10-25 16:17:21 -07:00
|
|
|
if [ -f $HOME/.autojump/etc/profile.d/autojump.zsh ]; then # manual user-local installation
|
2018-05-28 21:57:49 +02:00
|
|
|
source $HOME/.autojump/etc/profile.d/autojump.zsh
|
2014-12-04 11:38:37 +08:00
|
|
|
elif [ -f $HOME/.autojump/share/autojump/autojump.zsh ]; then # another manual user-local installation
|
2018-05-28 21:57:49 +02:00
|
|
|
source $HOME/.autojump/share/autojump/autojump.zsh
|
2016-06-15 12:27:25 +02:00
|
|
|
elif [ -f $HOME/.nix-profile/etc/profile.d/autojump.sh ]; then # nix installation
|
2018-05-28 21:57:49 +02:00
|
|
|
source $HOME/.nix-profile/etc/profile.d/autojump.sh
|
2017-11-02 00:05:35 +11:00
|
|
|
elif [ -f /run/current-system/sw/share/autojump/autojump.zsh ]; then # nixos installation
|
2018-05-28 21:57:49 +02:00
|
|
|
source /run/current-system/sw/share/autojump/autojump.zsh
|
2013-10-25 16:17:21 -07:00
|
|
|
elif [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package
|
2018-05-28 21:57:49 +02:00
|
|
|
source /usr/share/autojump/autojump.zsh
|
2012-01-10 10:01:16 +01:00
|
|
|
elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation
|
2018-05-28 21:57:49 +02:00
|
|
|
source /etc/profile.d/autojump.zsh
|
2013-05-09 13:12:11 +04:00
|
|
|
elif [ -f /etc/profile.d/autojump.sh ]; then # gentoo installation
|
2018-05-28 21:57:49 +02:00
|
|
|
source /etc/profile.d/autojump.sh
|
2013-11-29 18:34:12 +08:00
|
|
|
elif [ -f /usr/local/share/autojump/autojump.zsh ]; then # freebsd installation
|
2018-05-28 21:57:49 +02:00
|
|
|
source /usr/local/share/autojump/autojump.zsh
|
2018-06-20 23:27:38 +02:00
|
|
|
elif [ -f /opt/local/etc/profile.d/autojump.sh ]; then # mac os x with ports
|
2018-05-28 21:57:49 +02:00
|
|
|
source /opt/local/etc/profile.d/autojump.sh
|
2019-04-09 19:21:05 +02:00
|
|
|
elif [ $commands[brew] -a -f $(brew --prefix)/etc/profile.d/autojump.sh ]; then # mac os x with brew
|
|
|
|
|
source $(brew --prefix)/etc/profile.d/autojump.sh
|
2012-01-03 18:03:53 +01:00
|
|
|
fi
|
2015-10-23 13:00:12 -06:00
|
|
|
else
|
|
|
|
|
echo 'Please install autojump to enable the plugin (https://github.com/wting/autojump)'
|
2011-05-19 16:20:30 +02:00
|
|
|
fi
|