diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index 8ada066..1dd48b2 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -145,3 +145,11 @@ SAVEHIST=$HISTSIZE setopt autocd # Automatically cd to dirs typed setopt notify + +########################### +# Configure terimal title # +########################### +precmd () +{ + print -Pn "\e]0;%n@%m: %2~\a" +}