9 lines
175 B
Bash
9 lines
175 B
Bash
#
|
|
# load user-defined prompt
|
|
#
|
|
|
|
if [[ ! ${TERM} == (linux|*bsd*|dumb) ]] && (( ${+zprompt_theme} )); then
|
|
autoload -Uz promptinit && promptinit
|
|
prompt ${zprompt_theme}
|
|
fi
|