dont load the prompt module if older zsh version
This commit is contained in:
parent
ce93ba5d20
commit
2a0a7b3061
1 changed files with 7 additions and 0 deletions
|
@ -8,6 +8,13 @@
|
|||
# Load and execute the prompt theming system.
|
||||
autoload -Uz promptinit && promptinit
|
||||
|
||||
# Check for the minimum supported version.
|
||||
min_zsh_version='4.3.10'
|
||||
if ! autoload -Uz is-at-least || ! is-at-least "$min_zsh_version"; then
|
||||
return 1
|
||||
fi
|
||||
unset min_zsh_version
|
||||
|
||||
# Load the prompt theme.
|
||||
zstyle -a ':omz:module:prompt' theme 'prompt_argv'
|
||||
if (( $#prompt_argv > 0 )); then
|
||||
|
|
Loading…
Add table
Reference in a new issue