From 5797e46b8aeac6d48e941ae1a5ced30375fc7afc Mon Sep 17 00:00:00 2001 From: Olaf Alexander Date: Mon, 28 Oct 2024 14:50:05 -0500 Subject: [PATCH] fix(zsh): Allow autojump on Mac --- dot-config/zsh/dot-zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/dot-config/zsh/dot-zshrc b/dot-config/zsh/dot-zshrc index db2962c..d87c737 100644 --- a/dot-config/zsh/dot-zshrc +++ b/dot-config/zsh/dot-zshrc @@ -36,6 +36,7 @@ zstyle ':fzf-tab:complete:cd:*' fzf-preview 'ls --color $realpath' # Enable autojump [[ -s /etc/profile.d/autojump.zsh ]] && source /etc/profile.d/autojump.zsh +[[ -s /opt/homebrew/etc/profile.d/autojump.sh ]] && source /opt/homebrew/etc/profile.d/autojump.sh # Aliases [[ -s "$ZDOTDIR/aliases" ]] && source "$ZDOTDIR/aliases"