1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-01 15:10:28 +00:00
prezto/modules/prompt/init.zsh
2012-04-15 15:32:40 -04:00

20 lines
344 B
Bash

#
# 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