diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-03-19 14:08:51 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-03-19 14:08:51 +0100 |
| commit | 08ea1b60270d697fff5992eb9b665cec35493b6d (patch) | |
| tree | 449a026547c710089360dd2b3921c6e3276cab52 /runcoms/zshrc | |
| parent | b945717bde6231332093f4715e492c8ed7c6bd8a (diff) | |
| parent | f6b56240fff7c0ddf862c77434c2dc9fd54fd543 (diff) | |
Merge branch 'main' of git.sr.ht:~rbdr/dotfiles
Diffstat (limited to 'runcoms/zshrc')
| -rw-r--r-- | runcoms/zshrc | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/runcoms/zshrc b/runcoms/zshrc index 153d73d..9555055 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -86,12 +86,20 @@ fi if [[ -s "/opt/homebrew/bin/brew" ]]; then . /opt/homebrew/etc/profile.d/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 # ASDF if ! command -v brew &> /dev/null; then - . $HOME/.asdf/asdf.sh + if [[ -s "/opt/asdf-vm/asdf.sh" ]]; then + . /opt/asdf-vm/asdf.sh + else + . $HOME/.asdf/asdf.sh + fi else . $(brew --prefix asdf)/libexec/asdf.sh fi |