autojump.plugin.zsh 1.49 KB
Newer Older
1
if [ $commands[autojump] ]; then # check if autojump is installed
2
  if [ -f $HOME/.autojump/etc/profile.d/autojump.zsh ]; then # manual user-local installation
3
    source $HOME/.autojump/etc/profile.d/autojump.zsh
4
  elif [ -f $HOME/.autojump/share/autojump/autojump.zsh ]; then # another manual user-local installation
5
    source $HOME/.autojump/share/autojump/autojump.zsh
6
  elif [ -f $HOME/.nix-profile/etc/profile.d/autojump.sh ]; then # nix installation
7
    source $HOME/.nix-profile/etc/profile.d/autojump.sh
8
  elif [ -f /run/current-system/sw/share/autojump/autojump.zsh ]; then # nixos installation
9
    source /run/current-system/sw/share/autojump/autojump.zsh
10
  elif [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package
11
    source /usr/share/autojump/autojump.zsh
12
  elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation
13
    source /etc/profile.d/autojump.zsh
bebugz's avatar
bebugz committed
14
  elif [ -f /etc/profile.d/autojump.sh ]; then # gentoo installation
15
    source /etc/profile.d/autojump.sh
ych's avatar
ych committed
16
  elif [ -f /usr/local/share/autojump/autojump.zsh ]; then # freebsd installation
17
    source /usr/local/share/autojump/autojump.zsh
18
  elif [ -f /opt/local/etc/profile.d/autojump.sh ]; then # mac os x with ports
19
    source /opt/local/etc/profile.d/autojump.sh
Marc Cornellà's avatar
Marc Cornellà committed
20
21
  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
Calogero Lo Leggio's avatar
Calogero Lo Leggio committed
22
  fi
Alex Parker's avatar
Alex Parker committed
23
24
else
  echo 'Please install autojump to enable the plugin (https://github.com/wting/autojump)'
Jacob Atzen's avatar
Jacob Atzen committed
25
fi