]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/autojump/autojump.plugin.zsh
e11f231b64b9b605fe7b57c5526318c163d8912d
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / autojump / autojump.plugin.zsh
1 declare -a autojump_paths
2 autojump_paths=(
3   $HOME/.autojump/etc/profile.d/autojump.zsh         # manual installation
4   $HOME/.autojump/share/autojump/autojump.zsh        # manual installation
5   $HOME/.nix-profile/etc/profile.d/autojump.sh       # NixOS installation
6   /run/current-system/sw/share/autojump/autojump.zsh # NixOS installation
7   /usr/share/autojump/autojump.zsh                   # Debian and Ubuntu package
8   /etc/profile.d/autojump.zsh                        # manual installation
9   /etc/profile.d/autojump.sh                         # Gentoo installation
10   /usr/local/share/autojump/autojump.zsh             # FreeBSD installation
11   /usr/pkg/share/autojump/autojump.zsh               # NetBSD installation
12   /opt/local/etc/profile.d/autojump.sh               # macOS with MacPorts
13   /usr/local/etc/profile.d/autojump.sh               # macOS with Homebrew (default)
14   /opt/homebrew/etc/profile.d/autojump.sh            # macOS with Homebrew (default on M1 macs)
15   /etc/profiles/per-user/$USER/bin/autojump          # macOS Nix, Home Manager and flakes
16 )
17
18 for file in $autojump_paths; do
19   if [[ -f "$file" ]]; then
20     source "$file"
21     found=1
22     break
23   fi
24 done
25
26 # if no path found, try Homebrew
27 if (( ! found && $+commands[brew] )); then
28   file=$(brew --prefix)/etc/profile.d/autojump.sh
29   if [[ -f "$file" ]]; then
30     source "$file"
31     found=1
32   fi
33 fi
34
35 (( ! found )) && echo '[oh-my-zsh] autojump not found. Please install it first.'
36
37 unset autojump_paths file found