+if [[ -s "/opt/homebrew/bin/brew" ]]; then
+ # Brew Setup
+ export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH
+ export FZF_VIM_PATH=/opt/homebrew/opt/fzf
+ . /opt/homebrew/etc/profile.d/z.sh
+ . /opt/homebrew/opt/asdf/libexec/asdf.sh
+else
+ # FZF Vim (Linux)
+ if [[ -s "/usr/local/bin/brew" ]]; then
+ export FZF_VIM_PATH=/usr/local/opt/fzf
+ else
+ export FZF_VIM_PATH=/usr/share/doc/fzf/examples
+ fi
+
+ # Z (Linux)
+ if [[ -s "/usr/libexec/z.sh" ]]; then
+ . /usr/libexec/z.sh
+ else
+ if [[ -s "/usr/share/z/z.sh" ]]; then
+ . /usr/share/z/z.sh
+ else
+ . /usr/local/etc/profile.d/z.sh
+ fi
+ fi
+
+ # ASDF (Linux)
+ if [[ -s "/opt/asdf-vm/asdf.sh" ]]; then
+ . /opt/asdf-vm/asdf.sh
+ else
+ . $HOME/.asdf/asdf.sh
+ fi
+fi
+
+# ASDF Java
+if [[ -s "~/.asdf/plugins/java/set-java-home.zsh" ]]; then
+ . ~/.asdf/plugins/java/set-java-home.zsh
+fi