Browse code

Moving the loading of all .zsh files into a different file so that we can remove zshrc from the repository

Robby Russell authored on 01/09/2009 at 14:41:18
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,5 @@
0
+# Initializes Oh My Zsh
1
+
2
+# Load all of the config files in ~/oh-my-zsh that end in .zsh
3
+# TIP: Add files you don't want in git to .gitignore
4
+for i in $ZSH/*.zsh; do source $i; done;