From 142e908e2c31a14a3e9d2a67cee3e5f8474aa3ff Mon Sep 17 00:00:00 2001 From: Olaf Alexander Date: Sun, 27 Oct 2024 07:59:12 -0500 Subject: [PATCH] chore(zsh): Add autojump --- dot-config/zsh/dot-zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dot-config/zsh/dot-zshrc b/dot-config/zsh/dot-zshrc index 0115300..e1c6343 100644 --- a/dot-config/zsh/dot-zshrc +++ b/dot-config/zsh/dot-zshrc @@ -10,6 +10,9 @@ zinit load zsh-users/zsh-autosuggestions autoload -Uz compinit && compinit zinit cdreplay -q +# Enable autojump +[[ -s /etc/profile.d/autojump.zsh ]] && source /etc/profile.d/autojump.zsh + # Start starship prompt eval "$(starship init zsh)"