README.textile 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. A handful of functions, auto-complete helpers, and stuff that makes you shout...
  2. bq. "OH MY ZSHELL!"
  3. h2. Setup
  4. @oh-my-zsh@ should work with any recent release of "zsh":http://www.zsh.org/, the minimum recommended version is 4.3.9.
  5. h3. The automatic installer... (do you trust me?)
  6. You can install this via the command line with either `curl` or `wget`.
  7. h4. via `curl`
  8. @curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh@
  9. h4. via `wget`
  10. @wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh@
  11. h3. The manual way
  12. 1. Clone the repository
  13. @git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh@
  14. 2. Create a new zsh config by copying the zsh template we've provided.
  15. *NOTE*: If you already have a ~/.zshrc file, you should back it up. @cp ~/.zshrc ~/.zshrc.orig@ in case you want to go back to your original settings.
  16. @cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc@
  17. 3. Set zsh as your default shell:
  18. @chsh -s /bin/zsh@
  19. 4. Start / restart zsh (open a new terminal is easy enough...)
  20. h3. Problems?
  21. You _might_ need to modify your PATH in ~/.zshrc if you're not able to find some commands after switching to _Oh My Zsh_.
  22. h2. Usage
  23. * enable the plugins you want in your @~/.zshrc@ (take a look at @plugins/@ to see what's possible)
  24. ** example: @plugins=(git osx ruby)@
  25. * Theme support: Change the @ZSH_THEME@ environment variable in @~/.zshrc@.
  26. ** Take a look at the "current themes":https://wiki.github.com/robbyrussell/oh-my-zsh/themes that come bundled with _Oh My Zsh_.
  27. * much much more... take a look at @lib/@ what _Oh My Zsh_ offers...
  28. h2. Useful
  29. the "refcard":http://www.bash2zsh.com/zsh_refcard/refcard.pdf is pretty tasty for tips.
  30. h3. Customization
  31. If you want to override any of the default behavior, just add a new file (ending in @.zsh@) into the @custom/@ directory.
  32. If you have many functions which go well together you can put them as a *.plugin.zsh file in the @custom/plugins/@ directory and then enable this plugin.
  33. If you would like to override the functionality of a plugin distributed with oh-my-zsh, create a plugin of the same name in the @custom/plugins/@ directory and it will be loaded instead of the one in @plugins/@.
  34. h3. Uninstalling
  35. If you want to uninstall it, just run @uninstall_oh_my_zsh@ from the command line and it'll remove itself and revert you to bash (or your previous zsh config).
  36. h2. Help out!
  37. I'm far from being a zsh-expert and suspect there are many ways to improve. If you have ideas on how to make the configuration easier to maintain (and faster), don't hesitate to fork and send pull requests!
  38. h3. Send us your theme!
  39. I'm hoping to collect a bunch of themes for our command prompts. You can see existing ones in the @themes/@ directory.
  40. h2. Contributors
  41. This project wouldn't exist without all of our awesome users and contributors.
  42. * "View our growing list of contributors":https://github.com/robbyrussell/oh-my-zsh/contributors
  43. Thank you so much!