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