-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sh
executable file
·55 lines (43 loc) · 1.41 KB
/
.env.sh
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
export PATH="/opt/homebrew/bin:$PATH"
export PATH="/usr/local/sbin:$PATH"
export PATH="/Library/TeX/texbin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
export MANPATH="/usr/local/man:$MANPATH"
export EDITOR="vim"
# Virtualenv
if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then
export VIRTUALENVWRAPPER_PYTHON="/usr/local/bin/python3"
source /usr/local/bin/virtualenvwrapper.sh
fi
if [ -d "$HOME/.multirust" ]; then
export RUST_SRC_PATH="$HOME/.multirust/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/bin"
fi
if [ -d "$HOME/go" ]; then
export GOPATH=$HOME/go
export PATH="$PATH:$GOPATH/bin"
fi
if [ -f ~/.fzf.zsh ]; then
source ~/.fzf.zsh
fi
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
if [ -d "$HOME/.rvm/bin" ]; then
export PATH="$PATH:$HOME/.rvm/bin"
fi
if [ -d "$HOME/bin" ]; then
export PATH=$HOME/bin:$PATH
fi
if [ -d "/usr/local/opt/llvm/bin" ]; then
export PATH="/usr/local/opt/llvm/bin:$PATH"
fi
if [ -f $HOME/bin/kubectl-fzf/kubectl_fzf.sh ]; then
source $HOME/bin/kubectl-fzf/kubectl_fzf.sh
fi
source <(kubectl completion zsh)
source "/opt/homebrew/opt/kube-ps1/share/kube-ps1.sh"
# eval "$(nodenv init -)"
PS1='$(kube_ps1)'$PS1
export JAVA_HOME=$(/usr/libexec/java_home -v 21)
ssh-add --apple-use-keychain ~/.ssh/datadog_git_commit_signing
# Volta
export VOLTA_HOME="$HOME/.volta"
export PATH="$VOLTA_HOME/bin:$PATH"