Theme changes
* Load colors before base theme so they can be used by base theme
* Change git-specific variables to SCM-agnostic ones
diff --git a/bash_it.sh b/bash_it.sh
index 5736f89..0d42fcc 100644
--- a/bash_it.sh
+++ b/bash_it.sh
@@ -6,12 +6,9 @@
# Load the framework
-# Themes
-THEMES="${BASH}/themes/*.bash"
-for config_file in $THEMES
-do
- source $config_file
-done
+# Load colors first so they can be use in base theme
+source "${BASH}/themes/colors.theme.bash"
+source "${BASH}/themes/base.theme.bash"
# Library
LIB="${BASH}/lib/*.bash"