-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zprofile
21 lines (17 loc) · 940 Bytes
/
.zprofile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export PYENV_ROOT="$HOME/.pyenv"
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
export PYTHON_VERSION=$(python3 -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')")
export VOLTA_HOME="$HOME/.volta"
export PATH="$PATH:$HOME/.dotfiles/bin"
export PATH="$PATH:$HOME/.cargo/bin"
export PATH="$VOLTA_HOME/bin:$PATH"
export PATH="$PATH:$HOME/.local/bin"
export PATH="$PATH:$HOME/Library/Python/$PYTHON_VERSION/bin"
export PATH="$PATH:/Applications/kitty.app/Contents/MacOS"
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(/opt/homebrew/bin/brew shellenv)"
# The next line updates PATH for the Google Cloud SDK.
if [ -f "$HOME/google-cloud-sdk/path.zsh.inc" ]; then . "$HOME/google-cloud-sdk/path.zsh.inc"; fi
# The next line enables shell command completion for gcloud.
if [ -f "$HOME/google-cloud-sdk/completion.zsh.inc" ]; then . "$HOME/google-cloud-sdk/completion.zsh.inc"; fi