0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

Minor reformatting

This commit is contained in:
Pat Regan 2011-04-12 19:53:55 -04:00
parent 757ebfcbd2
commit 796f5164f3

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