Guest User

Untitled

a guest
May 20th, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. # Path to your oh-my-zsh configuration.
  2. export ZSH=$HOME/.oh-my-zsh
  3.  
  4. # Set to the name theme to load.
  5. # Look in ~/.oh-my-zsh/themes/
  6. export ZSH_THEME="prose"
  7.  
  8. # Set to this to use case-sensitive completion
  9. # export CASE_SENSITIVE="true"
  10.  
  11. # Comment this out to disable weekly auto-update checks
  12. # export DISABLE_AUTO_UPDATE="true"
  13.  
  14. # Uncomment following line if you want to disable colors in ls
  15. # export DISABLE_LS_COLORS="true"
  16.  
  17. source $ZSH/oh-my-zsh.sh
  18.  
  19. # Customize to your needs...
  20. export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11/bin
  21. export PATH=$PATH:$(git --exec-path)
  22. export PATH=$PATH:~/Documents/code/depot_tools
  23. # ALIASES
  24. #
  25. # cd
  26. alias ..='cd ..'
  27. alias c="clear"
  28.  
  29. # ls
  30. alias ls="ls -F"
  31. alias l="ls -lAh"
  32. alias ll="ls -l"
  33. alias la='ls -A'
  34.  
  35. # c prog
  36. alias o="open"
  37. export GEM_HOME='/usr/local/Cellar/gems/1.8'
  38.  
  39. export EDITOR="vim"
  40. export PYTHONPATH=/usr/local/lib/python2.6/site-packages
  41. export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/Cellar/glib/2.20.5/lib/pkgconfig
  42.  
  43. export OOC_DIST=~/Documents/code/ooc
  44. function git(){hub $@}
Add Comment
Please, Sign In to add comment