Created
December 9, 2013 14:34
-
-
Save baniol/7873070 to your computer and use it in GitHub Desktop.
bash_profile, terminal, linux
This file contains 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="☁ " | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxBxDxCxegedabagacad | |
if [ -f ~/.bash_aliases ]; then | |
. ~/.bash_aliases | |
fi | |
if [ -f ~/.bash_colors ]; then | |
. ~/.bash_colors | |
fi | |
PATH=/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/:$PATH | |
alias python_server="python -m SimpleHTTPServer 8080" | |
export PATH=$PATH:/usr/local/mysql/bin | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* | |
PATH="$(brew --prefix josegonzalez/php/php54)/bin:$PATH" | |
export PYTHONPATH="/usr/local/lib/python2.7/site-packages:$PYTHONPATH" | |
export PATH="/usr/local/bin:/usr/local/sbin:/usr/local/share/python:$PATH" | |
export PATH="/Applications/MoSync/bin/android/:$PATH" | |
export GEM_HOME='/usr/local/Cellar/ruby/2.0.0-p0/lib/ruby/gems/2.0.0' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment