Skip to content

Instantly share code, notes, and snippets.

@nickmoorman
Created March 13, 2013 19:39
Show Gist options
  • Save nickmoorman/5155394 to your computer and use it in GitHub Desktop.
Save nickmoorman/5155394 to your computer and use it in GitHub Desktop.
## 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