Skip to content

Instantly share code, notes, and snippets.

@thephw
Created September 14, 2014 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thephw/adfa430b77757a26ccbd to your computer and use it in GitHub Desktop.
Save thephw/adfa430b77757a26ccbd to your computer and use it in GitHub Desktop.
##########################
## Global setup options ##
##########################
#Configure editor
export EDITOR='subl -w'
#Setup sublime alias e
alias e='subl . &'
#Set PS1
export PS1="(\W) $ "
#Git autocompletion
source ~/git-completion.bash
alias gco='git co'
alias gci='git ci'
alias grb='git rb'
alias ll="ls -l"
#Turn on terminal colors
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
#Setup rbenv automatically
eval "$(rbenv init -)"
#Make the path correct for homebrew
export PATH=/usr/local/bin:$PATH
export PATH=/usr/local/sbin:$PATH
#Add binstubs to the path
export PATH="./bin:$PATH"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment