From 87359588e0d0f50a341c06a208f3ac29c01abe21 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Sun, 7 Sep 2025 04:25:49 +0200 Subject: [PATCH] zsh: Added zoxide --- zsh/dot-zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index 76ea40a..ccc58f7 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -96,3 +96,7 @@ if hash pnpm 2>/dev/null; then *) export PATH="$PNPM_HOME:$PATH" ;; esac fi + +if hash zoxide 2>/dev/null; then + eval "$(zoxide init zsh --cmd cd)" +fi