From ad06d3af977ab54e7c1086aa2bb0db6e1739f43e Mon Sep 17 00:00:00 2001 From: Dee'Kej Date: Sat, 6 Apr 2024 18:14:30 +0200 Subject: [PATCH] fix(autojump): detect 'pkgsrc' installation location as well The added path is currently default for Apple Silicon installations with 'pkgsrc' - https://pkgsrc.smartos.org/ --- plugins/autojump/autojump.plugin.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/autojump/autojump.plugin.zsh b/plugins/autojump/autojump.plugin.zsh index 84333a89f..5a52e3067 100644 --- a/plugins/autojump/autojump.plugin.zsh +++ b/plugins/autojump/autojump.plugin.zsh @@ -13,6 +13,7 @@ autojump_paths=( /opt/local/etc/profile.d/autojump.sh # macOS with MacPorts /usr/local/etc/profile.d/autojump.sh # macOS with Homebrew (default) /opt/homebrew/etc/profile.d/autojump.sh # macOS with Homebrew (default on M1 macs) + /opt/pkg/share/autojump/autojump.zsh # macOS with pkgsrc /etc/profiles/per-user/$USER/etc/profile.d/autojump.sh # macOS Nix, Home Manager and flakes )