Skip to content

Instantly share code, notes, and snippets.

@bevancollins
Created July 26, 2011 23:16
Show Gist options
  • Save bevancollins/1108330 to your computer and use it in GitHub Desktop.
Save bevancollins/1108330 to your computer and use it in GitHub Desktop.
Bash Config
export LS_OPTIONS='--color=auto'
eval "`dircolors`"
alias ls='ls $LS_OPTIONS'
alias ll='ls $LS_OPTIONS -l'
alias l='ls $LS_OPTIONS -lA'
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
export EDITOR=vim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment