From f487fb1b0ac582ff1060180a8f0f024dbeac0674 Mon Sep 17 00:00:00 2001 From: Fabio Scotto di Santolo Date: Thu, 15 Jan 2026 20:38:06 +0100 Subject: [PATCH] Fix Zoxide configuration for Arch --- bash/.bashrc.d/zoxide.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/.bashrc.d/zoxide.sh b/bash/.bashrc.d/zoxide.sh index 110cb32..1567673 100755 --- a/bash/.bashrc.d/zoxide.sh +++ b/bash/.bashrc.d/zoxide.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -if command -v /home/linuxbrew/.linuxbrew/bin/zoxide >/dev/null 2>&1; then - eval "$(/home/linuxbrew/.linuxbrew/bin/zoxide init bash)" +if command -v zoxide >/dev/null 2>&1; then + eval "$(zoxide init bash)" fi