mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 03:51:12 +00:00
fb9a20591f
Conflicts: README.md runcoms/zshenv
20 lines
351 B
Bash
20 lines
351 B
Bash
#
|
|
# 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 (( $#prompt_argv > 0 )); then
|
|
prompt "$prompt_argv[@]"
|
|
else
|
|
prompt 'off'
|
|
fi
|
|
unset prompt_argv
|
|
|