-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot.bash_profile
More file actions
37 lines (30 loc) · 1.17 KB
/
dot.bash_profile
File metadata and controls
37 lines (30 loc) · 1.17 KB
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
if [ -f $HOME/.bashrc ] ; then
source $HOME/.bashrc
fi
if [ -d $HOME/.plenv/bin ] ; then
export PATH="$HOME/.plenv/bin:$PATH"
eval "$(plenv init -)"
fi
if [ -d $HOME/.rbenv/bin ] ; then
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
fi
if [ -d $HOME/.pyenv/bin ] ; then
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
fi
if [ -d $HOME/.anyenv/bin ] ; then
export ANYENV_ROOT="/Users/shmorimo/.anyenv"
export PATH=$PATH:"/Users/shmorimo/.anyenv/bin"
eval "$(anyenv init -)"
fi
if brew --prefix homebrew/php/php56 >/dev/null 2>&1 ; then
export PATH="$(brew --prefix homebrew/php/php56)/bin:$PATH"
fi
export PATH=$PATH:"/Users/shmorimo/mini3/bin"
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/shigekimorimoto/Downloads/google-cloud-sdk/path.bash.inc' ]; then . '/Users/shigekimorimoto/Downloads/google-cloud-sdk/path.bash.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/shigekimorimoto/Downloads/google-cloud-sdk/completion.bash.inc' ]; then . '/Users/shigekimorimoto/Downloads/google-cloud-sdk/completion.bash.inc'; fi
. "$HOME/.cargo/env"