From be4d7a3de8816392e548c8a61f6d215ca91832ce Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Thu, 12 Aug 2021 01:30:25 -0700 Subject: [PATCH] Fixed zsh starting with error code 1 --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 760ee59..c622b25 100644 --- a/.zshrc +++ b/.zshrc @@ -548,5 +548,5 @@ add-zsh-hook preexec mzc_termsupport_preexec # <<< # Optionally source the user's customized .zshrc -[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshrc.local" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshrc.local" +[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshrc.local" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshrc.local" || return 0