From 4cf415c8864e64fbbc8e5c9681384a2896544fb3 Mon Sep 17 00:00:00 2001 From: "chawley (tfadmin)" Date: Wed, 12 Mar 2025 15:16:17 +0000 Subject: [PATCH] Added autojump to .zshrc Source autojump.zsh if it exists --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index 4852cd6..c980771 100644 --- a/.zshrc +++ b/.zshrc @@ -40,3 +40,6 @@ fi # If .zshrc.$USER exists, source it [[ ! -f ~/.zshrc.$USER ]] || source ~/.zshrc.$USER + +# If autojump installed, source it +[[ ! -f /usr/share/autojump/autojump.zsh ]] || source /usr/share/autojump/autojump.zsh