Last active
April 6, 2018 11:49
-
-
Save vbogretsov/465d88065dd3dde30df091bdd1b096e1 to your computer and use it in GitHub Desktop.
OS X bash profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Font: SF Mono Light 12 | |
| export PS1='\u@\h:\W$ ' | |
| export PATH=$HOME/.bin:$HOME/ports/Library/Frameworks/Python.framework/Versions/3.6/bin/:/Users/vova/ports/lib/postgresql96/bin/:$HOME/ports/bin:$HOME/ports/sbin:$PATH | |
| export LPATH=$HOME/ports/lib:$LDPATH | |
| export MANPATH=$HOME/ports/share/man:$MANPATH | |
| export LANG=en_US.utf-8 | |
| export LC_ALL=en_US.utf-8 | |
| if [[ $(which go) ]]; then | |
| export PATH=$(go env | grep GOPATH | sed 's/GOPATH=\"//' | sed s/\"//)/bin:$PATH | |
| fi | |
| export PREFIX=$HOME/.config/yarn/bin | |
| export PATH=$PREFIX:$PATH | |
| export PYTHONSTARTUP=~/.pythonrc | |
| alias py=python | |
| [[ $TERM != "screen" ]] && exec tmux |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment