From b858d798aea9bc20fb995b470c2341d3814c33b6 Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Fri, 25 Apr 2025 18:22:51 -0300 Subject: [PATCH] Ahh --- dot_config/bash/dot_bashrc | 3 +++ dot_config/zsh/dot_zshrc | 3 +++ 2 files changed, 6 insertions(+) diff --git a/dot_config/bash/dot_bashrc b/dot_config/bash/dot_bashrc index 8bbf497..3048668 100644 --- a/dot_config/bash/dot_bashrc +++ b/dot_config/bash/dot_bashrc @@ -44,3 +44,6 @@ hash starship 2>/dev/null && eval "$(starship init bash)" # Zoxide init has to be last hash zoxide 2>/dev/null && eval "$(zoxide init bash)" + +# Return 0 to indicate success that the script has been sourced to completion +return 0 \ No newline at end of file diff --git a/dot_config/zsh/dot_zshrc b/dot_config/zsh/dot_zshrc index 5b39916..2047c40 100644 --- a/dot_config/zsh/dot_zshrc +++ b/dot_config/zsh/dot_zshrc @@ -57,3 +57,6 @@ hash starship 2>/dev/null && eval "$(starship init zsh)" # Zoxide init has to be last hash zoxide 2>/dev/null && eval "$(zoxide init zsh)" + +# Return 0 to indicate success that the script has been sourced to completion +return 0 \ No newline at end of file