Advertisement
MrMetlHed

reporters_lab_bashrc

Jul 15th, 2011
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.82 KB | None | 0 0
  1. #paths
  2. PATH="/bin:/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
  3. export PATH
  4.  
  5.  
  6. export PYTHONPATH="/usr/local/lib/python"
  7.  
  8. # History Handling
  9. #
  10. # Erase Duplicates
  11. export HISTCONTROL=erasedups
  12. # Resize History Size
  13. export HISTSIZE=5000
  14. # Append to bash_history if quits
  15. shopt -s histappend
  16.  
  17.  
  18.  
  19. #How Prompt Looks
  20. #export PS1="\u@\h\w$ "
  21. export PS1="\n<\[\033[0;34m\]\h\[\033[0m\]:\[\033[0;36m\]\u\[\033[0m\]> \j [\$(date +%m-%d\" \"%H:%M)] \[\033[0;31m\]\w\[\033[0m\] \n! "
  22.  
  23. # Cli Colors
  24. export CLICOLOR=1
  25. # Colors
  26. export LSCOLORS=BxFxCxDxGxegedabagHxEx
  27.  
  28. # Aliases
  29. #
  30. alias ls='ls -la'
  31.  
  32. #Virtualenvs
  33. export WORKON_HOME=$HOME/.virtualenvs
  34. export PIP_VIRTUALENV_BASE=$WORKON_HOME
  35. export PIP_RESPECT_VIRTUALENV=true
  36. source /usr/local/bin/virtualenvwrapper.sh
  37. export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement