diff options
author | June McEnroe <programble@gmail.com> | 2015-02-18 13:36:38 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2015-02-18 13:36:38 -0500 |
commit | cf4e5820c0822c262ead8483a28a506c23162673 (patch) | |
tree | 82f7d767e9538d22bfd842bf0b16f7b51b3a3d54 | |
parent | Fix timeoutlen so leader still works (diff) | |
download | src-cf4e5820c0822c262ead8483a28a506c23162673.tar.gz src-cf4e5820c0822c262ead8483a28a506c23162673.zip |
Truncate RPROMPT with negative length
Diffstat (limited to '')
-rw-r--r-- | .zshrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.zshrc b/.zshrc index a16ceeca..551033da 100644 --- a/.zshrc +++ b/.zshrc @@ -37,7 +37,7 @@ _prompt_git_branch() { esac } PROMPT='%{%(?.$fg[green]$_prompt_ssh_color.$fg[red])%}»%{$reset_color%} ' -RPROMPT='%{$fg[blue]%}%30<…<%~%{$fg[yellow]%}$(_prompt_git_branch)%{$reset_color%}' +RPROMPT='%{$fg[blue]%}%-50<…<%~%{$fg[yellow]%}$(_prompt_git_branch)%{$reset_color%}' # Set title to directory name at prompt, prefixed with hostname over SSH. Add # current command to title while running. |