From f7964047134f8fab36ac10dc087b9b33d0be7466 Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Wed, 8 Apr 2026 14:10:02 +0200 Subject: [PATCH] bash: use source instead of eval for atuin --- home/.config/bash/hooks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.config/bash/hooks.sh b/home/.config/bash/hooks.sh index 4ddddee..c624f85 100644 --- a/home/.config/bash/hooks.sh +++ b/home/.config/bash/hooks.sh @@ -10,7 +10,7 @@ fi # Launch atuin if it is installed if command -v atuin >/dev/null; then - eval "$(atuin init bash)" + source <(atuin init bash) fi # Init zoxide if present and alias cd to it