Created
March 13, 2013 19:39
-
-
Save nickmoorman/5155394 to your computer and use it in GitHub Desktop.
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
## Environment Variables | |
## ===================== | |
# Enable Git completions | |
source ${HOME}/.gitcompletion.bash | |
# Executables for local PHP 5.4 development stack | |
PATH=/usr/local/sbin:/usr/local/apache2/bin:/usr/local/bin:/usr/local/mysql/bin:${PATH} | |
PATH="$(brew --prefix php54)/bin:$PATH" | |
# Home directory executables | |
PATH=${HOME}/bin:${PATH} | |
export PATH | |
## Aliases | |
## ======= | |
alias ls='ls -G' | |
alias grep='grep --color=auto' | |
alias egrep='grep -e' | |
alias fgrep='grep -f' | |
alias rgrep='grep -r' | |
alias ll='ls -alF' | |
alias la='ls -A' | |
alias l='ls -CF' | |
alias cl='clear' | |
## Miscellaneous | |
## ============= | |
# Colorize command prompt | |
color_prompt=yes | |
# Customize format of shell prompt display | |
PS1='\u@\h:\w$(__git_ps1 " (%s)")\$ ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment