dotfiles/zsh/.zprofile

12 lines
630 B
Plaintext
Raw Permalink Normal View History

2022-07-29 15:54:36 +00:00
typeset -U path
2022-08-15 20:14:34 +00:00
path=(~/bin ~/.local/bin ~/.gem/ruby/2.6.0/bin ~/go/bin /opt/homebrew/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/bin /opt/homebrew/opt/ruby/bin /opt/local/bin /usr/local/opt/make/libexec/gnubin /opt/homebrew/opt/coreutils/libexec/gnubin $path)
2022-07-29 15:54:36 +00:00
if [[ -f "/opt/homebrew/bin/brew" ]]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
fi
2021-07-27 15:50:55 +00:00
eval "$(pyenv init --path)"
[[ -d "/opt/homebrew/opt/openjdk@17" ]] && export JAVA_HOME="/opt/homebrew/opt/openjdk@17"
ulimit -n 524288
2022-08-15 20:14:34 +00:00
[[ -f "$HOME/.zprofile-spotify" ]] && source "$HOME/.zprofile-spotify"