diff options
author | June McEnroe <programble@gmail.com> | 2013-11-02 14:52:52 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2013-11-02 14:52:52 -0400 |
commit | 008f170dc7bedfe30267ab37efa03964744f391e (patch) | |
tree | 439ff526a2e1b62ed5392b275ae0c8ebab40b2c3 | |
parent | Update zsh syntax highlighting and config (diff) | |
download | src-008f170dc7bedfe30267ab37efa03964744f391e.tar.gz src-008f170dc7bedfe30267ab37efa03964744f391e.zip |
Remove git prompt from title
Diffstat (limited to '')
-rw-r--r-- | .zsh/title.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.zsh/title.zsh b/.zsh/title.zsh index 5a00c458..0307b57c 100644 --- a/.zsh/title.zsh +++ b/.zsh/title.zsh @@ -20,7 +20,7 @@ unset _title_host [[ -n "$SSH_CLIENT" ]] && _title_host='%m:' function _title_precmd { - [[ -z "$_title_custom" ]] && _title '$_title_host%1~$(gitprompt nocolor)' + [[ -z "$_title_custom" ]] && _title '$_title_host%1~' } typeset -ga preexec_functions |