From 146422e4b4f1ddc15db3587c67122da9be15d578 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Fri, 16 Feb 2024 18:28:58 +0000 Subject: [PATCH] Add zoxide support --- zshrc.zsh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc.zsh b/zshrc.zsh index 283b697..6e9932b 100644 --- a/zshrc.zsh +++ b/zshrc.zsh @@ -177,5 +177,10 @@ if command -v ngrok &>/dev/null; then eval "$(ngrok completion)" fi +# zoxide - a better `cd` command +if command -v zoxide &>/dev/null; then + eval "$(zoxide init zsh)" +fi + # Init starship prompt -- https://starship.rs eval "$(starship init zsh)"