From a446e9c12ca927c3c31b2b50c8d1b3036679ec71 Mon Sep 17 00:00:00 2001 From: Alex Flores Date: Fri, 1 Jul 2016 17:55:24 -0400 Subject: [PATCH] use globs to recusively source plugins in `$ZSH_CUSTOM` --- oh-my-zsh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index 6cc5ac630..48b51bc65 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -87,7 +87,7 @@ for plugin ($plugins); do done # Load all of your custom configurations from custom/ -for config_file ($ZSH_CUSTOM/*.zsh(N)); do +for config_file ($ZSH_CUSTOM/**/*.zsh(N)); do source $config_file done unset config_file