]> arthur.barton.de Git - ax-zsh.git/blobdiff - ax.zsh
Include the theme into the global context
[ax-zsh.git] / ax.zsh
diff --git a/ax.zsh b/ax.zsh
index 0071767967b2a04e6a8f363b2c1d437cb48e7468..4387f8d532416d623c154fcc53dcfe9fdeba8181 100644 (file)
--- a/ax.zsh
+++ b/ax.zsh
@@ -34,6 +34,7 @@ function axzsh_load_plugin {
        fi
 
        if [[ ! -r "$fname" && "$type" == "zshrc" ]]; then
+               zsh_themes=("$dname/"*.zsh-theme(NY1))
                if [[ -r "$dname/$plugin.zprofile" || -r "$dname/$plugin.zlogout" ]]; then
                        # Native AX-ZSH plugin, but for different stage. Skip it!
                        :
@@ -49,8 +50,13 @@ function axzsh_load_plugin {
                        # Prezto module
                        type="init.zsh"
                        fname="$dname/init.zsh"
+               elif [[ ${#zsh_themes} -gt 0 ]]; then
+                       # ZSH "theme plugin", ignore here!
+                       :
                else
                        echo "AX-ZSH plugin type of \"$plugin\" unknown, skipped!" >&2
+                       echo "Contents of \"$dname\":" >&2
+                       ls -lh "$dname/" >&2
                        return 0
                fi
        fi
@@ -171,6 +177,19 @@ else
        for plugin ($plugin_list); do
                axzsh_load_plugin "$plugin" "$script_type" "$cache_file"
        done
+
+       # Read the "theme file", if any and in "zshrc" stage:
+       if [[ "$script_type" = "zshrc" ]]; then
+               if [[ -r "$AXZSH_THEME" ]]; then
+                       source "$AXZSH_THEME"
+                       if [[ -n "$cache_file" ]]; then
+                               # Include the theme into the new cache file:
+                               echo "# BEGIN Theme" >>"$cache_file"
+                               "$cat_cmd" "$AXZSH_THEME" >>"$cache_file"
+                               echo "# END Theme" >>"$cache_file"
+                       fi
+               fi
+       fi
 fi
 
 # Clean up ...