zsh: disable async git prompt

This commit is contained in:
He4eT 2024-04-16 10:27:01 +02:00
commit 2671eabf7d
2 changed files with 4 additions and 0 deletions

View file

@ -21,6 +21,9 @@ clear
export ZSH="/home/odd/.oh-my-zsh"
ZSH_CUSTOM="/home/odd/dotfiles/zsh"
# https://github.com/ohmyzsh/ohmyzsh/issues/12328#issuecomment-2043492331
zstyle ':omz:alpha:lib:git' async-prompt no
ZSH_THEME="custom-minimal"
MODE_INDICATOR="%F{yellow}◼%f"
VI_MODE_CURSOR_INSERT=2

View file

@ -27,6 +27,7 @@ precmd() {
local exit_code=$?
if [ $exit_code -ne 0 ]; then
echo
echo "┌╼ Exit code: $exit_code"
fi
}