diff options
author | Pat Regan <thehead@patshead.com> | 2011-04-12 19:53:55 -0400 |
---|---|---|
committer | Pat Regan <thehead@patshead.com> | 2011-04-12 19:53:55 -0400 |
commit | 796f5164f306da2f4e6ab7cbadc17b78f5f683af (patch) | |
tree | a190c78661417b68d3066ea97ee26a3e2e137282 | |
parent | 757ebfcbd20b0893d8c9529eed2dfd428868f431 (diff) | |
download | zsh-796f5164f306da2f4e6ab7cbadc17b78f5f683af.tar.gz zsh-796f5164f306da2f4e6ab7cbadc17b78f5f683af.tar.bz2 zsh-796f5164f306da2f4e6ab7cbadc17b78f5f683af.zip |
Minor reformatting
-rw-r--r-- | oh-my-zsh.sh | 6 |
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 |