dotfiles/zsh/environment/host/wye/zshenv

26 lines
793 B
Plaintext
Raw Normal View History

2024-08-22 03:18:27 +00:00
#!/usr/bin/env zsh
export HOMEBREW_PREFIX="/opt/homebrew";
export HOMEBREW_CELLAR="/opt/homebrew/Cellar";
export HOMEBREW_REPOSITORY="/opt/homebrew";
export PYTHON_BIN="$($HOMEBREW_PREFIX/bin/brew --prefix python)/libexec/bin"
export HOMEBREW_BIN='/usr/local/bin'
export HOMEBREW_SBIN='/usr/local/sbin'
export GOPATH="${HOME}/.go"
export PSQLAPP="/Applications/Postgres.app/Contents/Versions/latest/bin"
export JAVA_HOME=$(/usr/libexec/java_home -v 17)
export DOOM_EMACS_BIN="${HOME}/.emacs.d/bin"
path=(
$DOOM_EMACS_BIN
$PYTHON_BIN
$PSQLAPP
$JAVA_HOME/bin
$HOMEBREW_PREFIX/bin
$HOMEBREW_PREFIX/sbin
$HOMEBREW_BIN
$HOMEBREW_SBIN
$path)
[ -z "${MANPATH-}" ] || export MANPATH=":${MANPATH#:}";
export INFOPATH="${HOMEBREW_PREFIX}/share/info:${INFOPATH:-}";