dotfiles/home/private_dot_config/zsh/zexists.d/cmd/anti-starship.zsh

12 lines
215 B
Bash
Raw Normal View History

2023-02-17 09:26:31 -06:00
echo "no starship = dumber prompt"
autoload -Uz vcs_info
precmd() {
vcs_info
}
zstyle ':vcs_info:git:*' formats '%b '
setopt PROMPT_SUBST
PROMPT='%F{green}%*%f %F{blue}%~%f %F{red}${vcs_info_msg_0_}%f$ '