-
Notifications
You must be signed in to change notification settings - Fork 0
/
bash_profile
35 lines (27 loc) · 1.03 KB
/
bash_profile
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
[[ -s ~/.bashrc ]] && source ~/.bashrc
alias zcat="gunzip -c"
[[ -f /Library/Developer/CommandLineTools/usr/share/git-core/git-completion.bash ]] \
&& . /Library/Developer/CommandLineTools/usr/share/git-core/git-completion.bash
# enable iterm2 itegration and set status variables
if [ -s ~/.iterm2_shell_integration.bash ]; then
function iterm2_print_user_vars() {
iterm2_set_user_var aws_profile "$AWS_PROFILE"
iterm2_set_user_var kube_context "$(kubectl config current-context)"
iterm2_set_user_var kube_ns "$(kubens --current)"
}
source ~/.iterm2_shell_integration.bash
fi
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init --path)"
eval "$(pyenv init -)"
fi
if command -v pyenv-virtualenv-init 1>/dev/null 2>&1; then
eval "$(pyenv virtualenv-init -)";
fi
if command -v pipx 1>/dev/null 2>&1; then
export PATH=$HOME/.local/bin/:$PATH
fi
# Created by `userpath` on 2020-03-25 14:04:59
export PATH="$PATH:/Users/rafael/.local/bin"
# Created by `pipx` on 2022-06-03 07:53:09
export PATH="$PATH:/Users/rafa/.local/bin"