1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 10:00:27 +00:00
prezto/modules/prompt/init.zsh

20 lines
344 B
Bash
Raw Normal View History

#
# Loads prompt themes.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Load and run the prompt theming system.
autoload -Uz promptinit && promptinit
# Load the prompt theme.
zstyle -a ':omz:module:prompt' theme 'prompt_argv'
if (( $#prompt_argv > 0 )); then
prompt "$prompt_argv[@]"
else
prompt 'off'
fi
unset prompt_argv