-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.bash_profile
35 lines (28 loc) · 1.09 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
# Setting PATH for Python 3.4
# The orginal version is saved in .bash_profile.pysave
export PYTHON_PATH_LATEST="/Users/shibel/.pyenv/versions/3.8.1/bin"
PATH="${PYTHON_PATH_LATEST}:${PATH}:$HOME/.local/bin"
export PATH=/Library/PostgreSQL/9.4/bin:$PATH
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
export BASH_SILENCE_DEPRECATION_WARNING=1
export SHELL_SESSION_HISTORY=0
# sublime fix: only customize prompt if we're running interactively
if shopt -q login_shell; then # only if login shell
eval "$(pyenv init -)"
if [[ $- == *i* ]]; then # only if interactive
if [ -f ~/.bash_prompt ]; then
source ~/.bash_prompt
fi
fi
if [ -f ~/.aliases ]; then
source ~/.aliases
fi
fi
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion || {
# if not found in /usr/local/etc, try the brew --prefix location
[ -f "$(brew --prefix)/etc/bash_completion.d/git-completion.bash" ] && \
. $(brew --prefix)/etc/bash_completion.d/git-completion.bash
}
export PATH="$HOME/.poetry/bin:$PATH"
export PATH="/usr/local/opt/[email protected]/bin:$PATH"