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