-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zprofile
58 lines (53 loc) · 1.56 KB
/
.zprofile
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
56
57
58
################################################################################
# rbenv
################################################################################
if [ -d ${HOME}/.rbenv ]; then
export PATH="${HOME}/.rbenv/bin:${PATH}"
export PATH="/Users/ONDA/.rbenv/shims:${PATH}"
source "${HOME}/.rbenv/completions/rbenv.zsh"
rbenv rehash 2>/dev/null
rbenv() {
typeset command
command="$1"
if [ "$#" -gt 0 ]; then
shift
fi
case "$command" in
rehash|shell)
eval `rbenv "sh-$command" "$@"`;;
*)
command rbenv "$command" "$@";;
esac
}
elif [ -d ${RBENV_ROOT} ]; then
export PATH="${RBENV_ROOT}/bin:${PATH}"
export PATH="${RBENV_ROOT}/shims:${PATH}"
source "/usr/local/Cellar/rbenv/0.4.0/completions/rbenv.zsh"
rbenv rehash 2>/dev/null
rbenv() {
typeset command
command="$1"
if [ "$#" -gt 0 ]; then
shift
fi
case "$command" in
rehash|shell)
eval `rbenv "sh-$command" "$@"`;;
*)
command rbenv "$command" "$@";;
esac
}
fi
################################################################################
# pyenv
################################################################################
export PYENV_ROOT="${HOME}/.pyenv"
if [ -d "${PYENV_ROOT}" ]; then
export PATH=${PYENV_ROOT}/bin:$PATH
eval "$(pyenv init -)"
fi
# Initialization for FDK command line tools.Mon Jun 8 10:34:10 2015
FDK_EXE="/Users/ONDA/bin/FDK/Tools/osx"
PATH=${PATH}:"/Users/ONDA/bin/FDK/Tools/osx"
export PATH
export FDK_EXE