Skip to content

Instantly share code, notes, and snippets.

@greneholt
Created May 24, 2013 03:57
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 greneholt/5641206 to your computer and use it in GitHub Desktop.
Save greneholt/5641206 to your computer and use it in GitHub Desktop.
Useful bash configuration
#if [ -f ~/.bash_common ]; then
# . ~/.bash_common
#fi
export CLICOLOR=1
export PS1="\[\e[7;32m\]\u\[\e[0m\] \[\e[7;36m\]\w\[\e[27;32m\]\$ \[\e[0m\]"
export EDITOR=vim
alias ll="ls -lh"
alias la="ls -a"
alias lla="ls -lha"
alias c="cd ~/Code"
alias d="cd ~/Desktop"
alias o="cd ~/Downloads"
alias u="cd ../"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment