Minor reformatting

This commit is contained in:
Pat Regan 2011-04-12 19:53:55 -04:00
parent 757ebfcbd2
commit 796f5164f3
1 changed files with 2 additions and 4 deletions

View File

@ -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