diff options
author | June McEnroe <june@causal.agency> | 2017-09-15 12:38:58 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-09-15 12:38:58 -0400 |
commit | 5a49ac0ad8f1144e2d9abec01041b1c7572e94d6 (patch) | |
tree | 2c2d19d1cd3a677ae2d291529a484ccb2ba77373 | |
parent | Move typo words to separate file (diff) | |
download | src-5a49ac0ad8f1144e2d9abec01041b1c7572e94d6.tar.gz src-5a49ac0ad8f1144e2d9abec01041b1c7572e94d6.zip |
Simplify zsh prompts
-rw-r--r-- | home/.zshrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/.zshrc b/home/.zshrc index 77e4569d..c4346a93 100644 --- a/home/.zshrc +++ b/home/.zshrc @@ -58,8 +58,8 @@ _prompt_git() { esac } [ -n "$SSH_CLIENT" ] && _prompt_ssh='%F{magenta}' -PROMPT="%(?.%F{green}$_prompt_ssh.%F{red})»%f " -RPROMPT='%F{blue}%50<…<%~%F{yellow}$(_prompt_git)%f' +PROMPT="%(?.%F{white}$_prompt_ssh.%F{red})%#%f " +RPROMPT='%F{white}%50<..<%~$(_prompt_git)%f' _n() { _n() { echo } } _title() { print -Pn "\e]0;$1\a" } |