Skip to content

Instantly share code, notes, and snippets.

@vbogretsov
Last active April 6, 2018 11:49
Show Gist options
  • Select an option

  • Save vbogretsov/465d88065dd3dde30df091bdd1b096e1 to your computer and use it in GitHub Desktop.

Select an option

Save vbogretsov/465d88065dd3dde30df091bdd1b096e1 to your computer and use it in GitHub Desktop.
OS X bash profile
# 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