diff options
author | Paul S <pshirshov@gmail.com> | 2022-10-25 20:39:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 21:39:58 +0200 |
commit | 49691b58b3c1fbe64b927ec88d5e9697f76e2a80 (patch) | |
tree | 640760e17d99f87610f8814f0b2b0bb47cd2e449 /plugins | |
parent | 820b8bd40f19867d7811766f967d66faa5e5a818 (diff) | |
download | zsh-49691b58b3c1fbe64b927ec88d5e9697f76e2a80.tar.gz zsh-49691b58b3c1fbe64b927ec88d5e9697f76e2a80.tar.bz2 zsh-49691b58b3c1fbe64b927ec88d5e9697f76e2a80.zip |
feat(autojump): add support for macOS and nix (#11291)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/autojump/autojump.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/autojump/autojump.plugin.zsh b/plugins/autojump/autojump.plugin.zsh index 8593353b2..e11f231b6 100644 --- a/plugins/autojump/autojump.plugin.zsh +++ b/plugins/autojump/autojump.plugin.zsh @@ -12,6 +12,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) + /etc/profiles/per-user/$USER/bin/autojump # macOS Nix, Home Manager and flakes ) for file in $autojump_paths; do |