piccola aggiunta:

per avere il titolo del terminale emulato in questo formato:

utente@host percorso

aggiungete questo al file .zshrc (non è farina del mio sacco)
codice:
# {{{ Changing terminal window/icon titles

precmd () {print -Pn "\e]0;%n@%m: %~\a"}


which cx >&/dev/null || cx () { }

if [[ "$TERM" == ([Ex]term*|screen*) ]]; then
  # Could also look at /proc/$PPID/cmdline ...
  cx
fi

# }}}