Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 21st, 2012  |  syntax: None  |  size: 0.82 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # If not running interactively, don't do anything
  2. [ -z "$PS1" ] && return
  3.  
  4. # Prompt
  5. if [ -f ~/Dropbox/sync/.bash_prompt ]; then
  6.         . ~/Dropbox/sync/.bash_prompt
  7. fi
  8.  
  9. # Aliases
  10. if [ -f ~/Dropbox/sync/.bash_aliases ]; then
  11.         . ~/Dropbox/sync/.bash_aliases
  12. fi
  13.  
  14. # Color
  15. export CLICOLOR=true
  16. export LSCOLORS="gxfxcxdxbxegedabagacad"
  17.  
  18. # Case-insensitive globbing (used in pathname expansion)
  19. shopt -s nocaseglob
  20.  
  21. # Prefer US English and use UTF-8
  22. export LC_ALL="en_US.UTF-8"
  23. export LANG="en_US"
  24.  
  25. # Double check Ctrl + D
  26. export IGNOREEOF=1
  27.  
  28. export DISPLAY=:0.0
  29. export MANPATH=/opt/local/man:$MANPATH
  30.  
  31. # Make vim the default editor
  32. export EDITOR="vim"
  33. # Don’t clear the screen after quitting a manual page
  34. export MANPAGER="less -X"
  35.  
  36. # Make some commands not show up in history
  37. export HISTIGNORE="ls:ls *:cd:cd -:pwd;exit:date:* --help"