Do not break out of the loop instead continue with other items in the list.
diff --git a/bash_it.sh b/bash_it.sh
index c7cbaa7..fd7b546 100644
--- a/bash_it.sh
+++ b/bash_it.sh
@@ -22,7 +22,7 @@
 do
   if [ ! -d "${BASH}/${file_type}/enabled" ]
   then
-    break
+    continue 
   fi
   FILES="${BASH}/${file_type}/enabled/*.bash"
   for config_file in $FILES