1
0
Fork 0
mirror of synced 2024-05-28 04:51:11 -04:00
zimfw/modules/prompt/init.zsh
Matt Hamilton d40b6cf928 [prompt] pass prompt prams from zprompt_theme
While normally it's a good thing that zsh doesn't auto-expand on spaces,
in this case we want to split on spaces into distinct words, that way
the values are passed to `prompt` in multiple params.

Fixes #178
2017-09-18 09:18:20 -04:00

9 lines
185 B
Bash

#
# load user-defined prompt
#
if [[ ! ${TERM} == (linux|*bsd*|dumb) ]] && (( ${+zprompt_theme} )); then
autoload -Uz promptinit && promptinit
prompt ${(ps: :)${zprompt_theme}}
fi