diff options
author | Robby Russell <robby@planetargon.com> | 2009-08-31 07:45:31 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2009-08-31 07:45:31 -0700 |
commit | 2c9f74b5c3f6910e7c66601008e9ddd0444b70c7 (patch) | |
tree | 61b47d262ae8c38ecdebc8f9b1085108675e1dea /zshrc | |
parent | 908fead30300c33a9eadc975309442a5ccf4f859 (diff) | |
download | zsh-2c9f74b5c3f6910e7c66601008e9ddd0444b70c7.tar.gz zsh-2c9f74b5c3f6910e7c66601008e9ddd0444b70c7.tar.bz2 zsh-2c9f74b5c3f6910e7c66601008e9ddd0444b70c7.zip |
Adding theme support so that people can share their zsh prompts with others. Users can set which theme to load in zshrc now.
Diffstat (limited to 'zshrc')
-rw-r--r-- | zshrc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,6 +1,10 @@ # Path to your oh-my-zsh configuration. export ZSH=$HOME/.oh-my-zsh +# Set to the name theme to load. +# Look in ~/.oh-my-zsh/themes/ +export ZSH_THEME="robbyrussell" + # Load all of the config files in ~/oh-my-zsh that end in .zsh # TIP: Add files you don't want in git to .gitignore for i in $ZSH/*zsh; do source $i; done; |