Last active
August 29, 2015 13:57
-
-
Save chrisdev/9511988 to your computer and use it in GitHub Desktop.
A Simple OSX 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
PS1='[\u@\h \W]\$ ' | |
#better prompt for sudo | |
SUDO_PS1='[\u@\h \W]\$ ' | |
export LANG="en_US.UTF-8" | |
export LC_CTYPE="en_US.UTF-8" | |
export LC_ALL= | |
## Colorize the ls output ## | |
alias cp='cp -iv' # Preferred 'cp' implementation | |
alias mv='mv -iv' # Preferred 'mv' implementation | |
alias mkdir='mkdir -pv' # Preferred 'mkdir' implementation | |
alias ll='ls -aFGlAhp' # better ls | |
# Setting PATH for Python 2.7 | |
# The orginal version is saved in .bash_profile.pysave | |
PATH="/usr/local/bin:/Applications/Postgres93.app/Contents/MacOS/bin:${PATH}" | |
export PATH | |
export WORKON_HOME=$HOME/virtualenvs | |
source /usr/local/bin/virtualenvwrapper.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment