zshrc fix

This commit is contained in:
David Tomaschik
2022-06-11 11:06:56 -07:00
parent f2ca693f7b
commit cbcc6e6fb6

View File

@@ -158,4 +158,7 @@ fi
if [ -e $HOME/.zshrc.local ] ; then source $HOME/.zshrc.local ; fi if [ -e $HOME/.zshrc.local ] ; then source $HOME/.zshrc.local ; fi
# Set prompt based on local settings # Set prompt based on local settings
prompt "${THEME:-matir}" if test -f "${HOME}/.zprompt" ; then
THEME=${THEME:=$(cat "${HOME}/.zprompt")}
fi
prompt "${THEME:-matir}" >/dev/null 2>&1