You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
389 B
18 lines
389 B
# |
|
# Loads prompt themes. |
|
# |
|
# Authors: |
|
# Sorin Ionescu <sorin.ionescu@gmail.com> |
|
# |
|
|
|
# Load and execute the prompt theming system. |
|
autoload -Uz promptinit && promptinit |
|
|
|
# Load the prompt theme. |
|
zstyle -a ':prezto:module:prompt' theme 'prompt_argv' |
|
if [[ "$TERM" == (dumb|linux|*bsd*) ]] || (( $#prompt_argv < 1 )); then |
|
prompt 'off' |
|
else |
|
prompt "$prompt_argv[@]" |
|
fi |
|
unset prompt_argv
|
|
|