From 7ed5fab5d87c02aa0567cbb06b992f3409e7ab7e Mon Sep 17 00:00:00 2001 From: Tony Blyler Date: Tue, 5 Nov 2024 09:07:38 -0500 Subject: [PATCH] add orbstack sourcing if available --- chezmoi/dot_zshenv | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/chezmoi/dot_zshenv b/chezmoi/dot_zshenv index 20c194d..e78d2ef 100644 --- a/chezmoi/dot_zshenv +++ b/chezmoi/dot_zshenv @@ -108,6 +108,10 @@ if command -v fzf &> /dev/null; then fi fi +if [ -r "${HOME}/.orbstack/shell/init.zsh" ]; then + source ~/.orbstack/shell/init.zsh 2>/dev/null || : +fi + typeset -U path # this is a hack to prevent MacOS from being smarter than us for PATH settings