dotfiles/zsh/environment/host/wok/zshenv
2024-07-10 11:19:45 -04:00

19 lines
486 B
Bash

#!/usr/bin/env zsh
export PYTHON_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 11)
export DOOM_EMACS_BIN="${HOME}/.emacs.d/bin"
path=(
$DOOM_EMACS_BIN
$PYTHON_BIN
$GOPATH/bin
$PSQLAPP
$JAVA_HOME/bin
$HOMEBREW_BIN
$HOMEBREW_SBIN
$path)