summaryrefslogtreecommitdiff
path: root/oh-my-zsh.sh
diff options
context:
space:
mode:
authorPat Regan <thehead@patshead.com>2011-04-12 19:53:55 -0400
committerPat Regan <thehead@patshead.com>2011-04-12 19:53:55 -0400
commit796f5164f306da2f4e6ab7cbadc17b78f5f683af (patch)
treea190c78661417b68d3066ea97ee26a3e2e137282 /oh-my-zsh.sh
parent757ebfcbd20b0893d8c9529eed2dfd428868f431 (diff)
downloadzsh-796f5164f306da2f4e6ab7cbadc17b78f5f683af.tar.gz
zsh-796f5164f306da2f4e6ab7cbadc17b78f5f683af.tar.bz2
zsh-796f5164f306da2f4e6ab7cbadc17b78f5f683af.zip
Minor reformatting
Diffstat (limited to 'oh-my-zsh.sh')
-rw-r--r--oh-my-zsh.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh
index ad4b268ae..c7a4c320a 100644
--- a/oh-my-zsh.sh
+++ b/oh-my-zsh.sh
@@ -19,10 +19,8 @@ compinit -i
for config_file ($ZSH/custom/*.zsh) source $config_file
# Load all of the plugins that were defined in ~/.zshrc
-for plugin ($plugins)
-do
- if [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]
- then
+for plugin ($plugins); do
+ if [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
source $ZSH/plugins/$plugin/$plugin.plugin.zsh
fi
done