Thoughts
```zsh
my-accept-line () {
zle accept-line
if [ ${#${(z)BUFFER}} -eq 0 ]; then
if [[ -e .git ]]; then
echo
echo -n ${"$(git -c color.status=always status)"[0, -1]}
fi
fi
}
zle -N my-accept-line
bindkey '^M' my-accept-line
```