diff options
Diffstat (limited to 'runcoms')
| -rw-r--r-- | runcoms/zshrc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/runcoms/zshrc b/runcoms/zshrc index 8df1b05..3b61e08 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -82,10 +82,14 @@ fi if [[ -s "/opt/homebrew/bin/brew" ]]; then . /opt/homebrew/etc/profile.d/z.sh else - if [[ -s "/usr/share/z/z.sh" ]]; then - . /usr/share/z/z.sh + if [[ -s "/usr/libexec/z.sh" ]]; then + . /usr/libexec/z.sh else - . /usr/local/etc/profile.d/z.sh + if [[ -s "/usr/share/z/z.sh" ]]; then + . /usr/share/z/z.sh + else + . /usr/local/etc/profile.d/z.sh + fi fi fi |