2012-04-03 07:21:54 +08:00
|
|
|
#
|
|
|
|
# Loads prompt themes.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2012-06-01 05:33:59 +08:00
|
|
|
# Load and execute the prompt theming system.
|
2012-04-03 07:21:54 +08:00
|
|
|
autoload -Uz promptinit && promptinit
|
|
|
|
|
|
|
|
# Load the prompt theme.
|
2012-09-04 04:08:39 +08:00
|
|
|
zstyle -a ':prezto:module:prompt' theme 'prompt_argv'
|
2023-04-27 08:40:59 +08:00
|
|
|
if [[ $TERM == (dumb|linux|*bsd*) ]] || (( $#prompt_argv < 1 )); then
|
2012-04-03 07:21:54 +08:00
|
|
|
prompt 'off'
|
2014-11-06 06:41:36 +08:00
|
|
|
else
|
|
|
|
prompt "$prompt_argv[@]"
|
2012-04-03 07:21:54 +08:00
|
|
|
fi
|
|
|
|
unset prompt_argv
|