-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshenv
29 lines (25 loc) · 1.09 KB
/
.zshenv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
export PATH=/opt/homebrew/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11/bin
export PATH="$HOME/Projects/dotfiles/bin:$PATH"
export PATH="$HOME/.node/bin:$PATH"
export PATH="$HOME/.rbenv/bin:$PATH"
export PATH="$HOME/.rbenv/bin:$PATH"
export PATH="$HOME/.phpenv/bin:$PATH"
export PATH="$HOME/.pyenv/bin:$PATH"
export PATH="./node_modules/.bin:$PATH"
export PATH="$HOME/Library/Android/sdk/tools:$PATH"
export PATH="$HOME/Library/Android/sdk/platform-tools:$PATH"
export PATH="$HOME/Library/Android/sdk/cmdline-tools/latest/bin:$PATH"
export ANDROID_HOME="$HOME/Library/Android/sdk" # deprecated
export ANDROID_SDK_ROOT="$HOME/Library/Android/sdk" # new
export EDITOR=vim
export OPENSSL_ROOT_DIR="/usr/local/Cellar/openssl/1.0.2l"
# for tmuxinator:
export DISABLE_AUTO_TITLE=true
# Things I don't want to publish to github
[[ -s "$HOME/.secrets" ]] && source "$HOME/.secrets"
# adding this, as `UseKeychain` in .ssh/config not working for some reason
# ssh-add -K 2>/dev/null;
export GOENV_ROOT="$HOME/.goenv"
export PATH="$GOENV_ROOT/bin:$PATH"
eval "$(goenv init -)"
. "$HOME/.cargo/env"