Advertisement
Guest User

.zshrc

a guest
Aug 13th, 2013
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. # Path to your oh-my-zsh configuration.
  2. ZSH=$HOME/.oh-my-zsh
  3.  
  4. # Set name of the theme to load.
  5. # Look in ~/.oh-my-zsh/themes/
  6. # Optionally, if you set this to "random", it'll load a random theme each
  7. # time that oh-my-zsh is loaded.
  8. ZSH_THEME="gentoo"
  9.  
  10. # Example aliases
  11. # alias zshconfig="mate ~/.zshrc"
  12. # alias ohmyzsh="mate ~/.oh-my-zsh"
  13. alias ls='ls --color=auto'
  14. alias dir='dir --color=auto'
  15. alias grep='grep --color=auto'
  16. alias dwf='dwarffortress'
  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 often 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 to disable command autocorrection
  34. # DISABLE_CORRECTION="true"
  35.  
  36. # Uncomment following line if you want red dots to be displayed while waiting for completion
  37. # COMPLETION_WAITING_DOTS="true"
  38.  
  39. # Uncomment following line if you want to disable marking untracked files under
  40. # VCS as dirty. This makes repository status check for large repositories much,
  41. # much faster.
  42. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  43.  
  44. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  45. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  46. # Example format: plugins=(rails git textmate ruby lighthouse)
  47. plugins=(tmux tmuxinator urltools web-search archlinux encode64 gem gpg-agent lol)
  48.  
  49. source $ZSH/oh-my-zsh.sh
  50.  
  51. # COLORS :D
  52. if [[ -f ~/.dir_colors ]]; then
  53. eval $(dircolors -b ~/.dir_colors)
  54. elif [[ -f /etc/DIR_COLORS ]]; then
  55. eval $(dircolors -b /etc/DIR_COLORS)
  56. else
  57. eval $(dircolors)
  58. fi
  59.  
  60. # Customize to your needs...
  61. export PATH=$PATH:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/wtan/.gem/ruby/2.0.0/bin
  62.  
  63. # Other stuff
  64. [[ -s $HOME/.tmuxinator/scripts/tmuxinator ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement