dotfiles/zsh/environment/host/wok/zshenv

10 lines
217 B
Plaintext
Raw Normal View History

2019-12-20 15:13:54 +00:00
export GOPATH="${HOME}/.go"
2020-07-06 00:00:20 +00:00
export PSQLAPP="/Applications/Postgres.app/Contents/Versions/latest/bin"
2020-11-27 21:13:42 +00:00
export JAVA_HOME=$(/usr/libexec/java_home -v 14)
2020-06-03 03:26:08 +00:00
path=(
2021-08-28 16:45:59 +00:00
$GOPATH/bin
2020-06-03 03:26:08 +00:00
$PSQLAPP
2020-11-27 21:13:42 +00:00
$JAVA_HOME/bin
2020-06-03 03:26:08 +00:00
$path)