From fb5fdb315f5d2528bd3de8db7da882db6cf48b86 Mon Sep 17 00:00:00 2001 From: Seongmin Lee Date: Sun, 10 Aug 2025 00:10:39 +0900 Subject: [PATCH] fix(zsh): don't parse `.zshrc` multiple times Signed-off-by: Seongmin Lee --- zsh/.zprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/.zprofile b/zsh/.zprofile index 11f575b..03346c8 100644 --- a/zsh/.zprofile +++ b/zsh/.zprofile @@ -33,4 +33,4 @@ export PATH="$HOME/dot/bin:$PATH" ################ BOTTOM ################ # load .zshrc when interactive (ssh) -[[ -o interactive ]] && source ~/.zshrc +# [[ -o interactive ]] && source ~/.zshrc -- 2.51.2