refactor(shell): минимальная версия zsh для starship или p10k

* Обеспечивает, что скрипт будет работать только при версии zsh 5.8+
* Улучшает отказоустойчивость путем предотвращения сбоев на устаревших
оболочках
This commit is contained in:
2026-04-11 15:10:34 +03:00
parent d94e971efc
commit 2a5be2aa58

View File

@@ -7,6 +7,7 @@
# (password prompts, [y/n] confirmations, etc.) # (password prompts, [y/n] confirmations, etc.)
# must go above this block; everything else may go below. # must go above this block; everything else may go below.
autoload -Uz is-at-least
! is-at-least 5.8 && return ! is-at-least 5.8 && return
command -v starship >/dev/null && return command -v starship >/dev/null && return