Initial commit.

This commit is contained in:
pztrn
2014-12-02 21:07:00 +05:00
commit fb6fd486e9
15 changed files with 373 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# Load user desired prompt.
autoload -Uz promptinit
promptinit
if [ "${PROMPT_THEME}" != "" ]; then
if [ -f ${CONFIG_PATH}/zsh/prompts/${PROMPT_THEME}.zsh-theme ]; then
source ${CONFIG_PATH}/zsh/prompts/${PROMPT_THEME}.zsh-theme
else
echo "Theme \"${PROMPT_THEME}\" could not be loaded. File does not exist or unreadable."
fi
fi