X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/b945717bde6231332093f4715e492c8ed7c6bd8a..a94ac638f8bb946e98ca04503e7907f9f1d63c3e:/runcoms/zshrc diff --git a/runcoms/zshrc b/runcoms/zshrc index 153d73d..faf73a8 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -1,7 +1,6 @@ ################################################################################ # Load Functions ################################################################################ -source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/git-info.zsh" source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/dotenv.zsh" source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/graphviz.zsh" source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/short-uptime.zsh" @@ -35,10 +34,6 @@ export NVM_DIR=$HOME/.nvm export PATH=$PATH:$HOME:${GOPATH//://bin:}/bin export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_NDK_HOME:/Applications/calibre.app/Contents/MacOS -# Editor. -export EDITOR="nvim" -export VISUAL="nvim" - # Python related variables export VIRTUAL_ENV_DISABLE_PROMPT=1 export WORKON_HOME=$HOME/.virtualenvs @@ -86,12 +81,24 @@ 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 + +if [[ -s "~/.asdf/plugins/java/set-java-home.zsh" ]]; then + . ~/.asdf/plugins/java/set-java-home.zsh +fi