Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. # Path to your oh-my-zsh configuration.
  2. ZSH=$HOME/.oh-my-zsh
  3.  
  4. # For Solarized
  5. export TERM="xterm-256color"
  6.  
  7. # Set name of the theme to load.
  8. # Look in ~/.oh-my-zsh/themes/
  9. # Optionally, if you set this to "random", it'll load a random theme each
  10. # time that oh-my-zsh is loaded.
  11. # ZSH_THEME="steeef"
  12. ZSH_THEME="wedigagree"
  13.  
  14. # Example aliases
  15. # alias zshconfig="mate ~/.zshrc"
  16. # alias ohmyzsh="mate ~/.oh-my-zsh"
  17.  
  18. # Set to this to use case-sensitive completion
  19. # CASE_SENSITIVE="true"
  20.  
  21. # Comment this out to disable bi-weekly auto-update checks
  22. DISABLE_AUTO_UPDATE="true"
  23.  
  24. # Uncomment to change how many often would you like to wait before auto-updates occur? (in days)
  25. # export UPDATE_ZSH_DAYS=13
  26.  
  27. # Uncomment following line if you want to disable colors in ls
  28. # DISABLE_LS_COLORS="true"
  29.  
  30. # Uncomment following line if you want to disable autosetting terminal title.
  31. # DISABLE_AUTO_TITLE="true"
  32.  
  33. # Uncomment following line if you want red dots to be displayed while waiting for completion
  34. # COMPLETION_WAITING_DOTS="true"
  35.  
  36. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  37. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  38. # Example format: plugins=(rails git textmate ruby lighthouse)
  39. plugins=(git cp command-not-found git-extras gnu-utils history pip python ruby screen ssh-agent svn)
  40.  
  41. source $ZSH/oh-my-zsh.sh
  42. alias cdd='cd ../'
  43. alias cdh='cd ~'
  44. alias e='emacs .'
  45. alias .zshrc='vim ~/.zshrc'
  46. alias .vimrc='vim ~/.vimrc'
  47. export LSCOLORS=gxfxcxdxbxegedabagacad
  48.  
  49. # Customize to your needs...
  50. export PATH=/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
  51.  
  52. PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement