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