Created
November 6, 2008 19:14
-
-
Save luigi/22676 to your computer and use it in GitHub Desktop.
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
export PATH=/usr/local/mysql/bin:$PATH | |
export PATH=/opt/local/bin:/opt/local/sbin:$PATH | |
export PATH=~/bin:~/bin:$PATH | |
export PATH=/usr/local/sbin:$PATH | |
export PATH=/usr/local/nginx/sbin:$PATH | |
export PATH=/usr/local/bin:$PATH | |
export MANPATH=/opt/local/share/man:$MANPATH | |
# Use TextMate as our editor | |
export EDITOR="/usr/bin/mate -w" | |
export SVN_EDITOR="/usr/bin/mate -w" | |
export LC_CTYPE='en_US.UTF-8' | |
# Bash history configuration | |
export HISTCONTROL=erasedups | |
export HISTSIZE=10000 | |
shopt -s histappend | |
# ls should use nice, pretty colors | |
export LSCOLORS="ExGxBxDxCxEgEdxbxgxcxd" | |
export PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \W `git branch 2> /dev/null | grep -e ^* | sed -E s/^\\\\\*\ \(.+\)$/\(\\\\\1\)\/`\[\033[37m\]$\[\033[00m\] ' | |
export RSPEC=true | |
alias unet="cd ~/Clients/UNET/Sites/unet" | |
alias clientdep="cd ~/Clients/WebStrong/Sites/client_deployments" | |
alias platform="cd ~/Clients/WebStrong/Sites/platform" | |
alias taildev="tail -f log/development.log" | |
alias apache="sudo apachectl graceful" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment