13 lines
324 B
Bash
13 lines
324 B
Bash
# shellcheck shell=bash
|
|
# vim: ft=sh
|
|
|
|
if is-at-least 5.3; then
|
|
zinit ice depth"1" # git clone depth
|
|
zinit light romkatv/powerlevel10k
|
|
|
|
# To customize prompt, run `p10k configure` or edit ~/.config/zsh/.p10k.zsh.
|
|
[[ -r "$ZDOTDIR/.p10k.zsh" ]] && source "$ZDOTDIR/.p10k.zsh"
|
|
else
|
|
zinit load agkozak/agkozak-zsh-prompt
|
|
fi
|