X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/b24afe9298b02b544db6685a7ae9067333545de8..a7e11bc9f83c6f69ae2f96fb8a35cd6ca8ea186c:/.zsh/zshrc/90_prompt diff --git a/.zsh/zshrc/90_prompt b/.zsh/zshrc/90_prompt index 6d5f635..cdde4da 100644 --- a/.zsh/zshrc/90_prompt +++ b/.zsh/zshrc/90_prompt @@ -8,9 +8,15 @@ # Source repository: http://git.madduck.net/v/etc/zsh.git # -is_root && PS1_HL=U -PS1="%${PS1_HL:=B}%m%${(L)PS1_HL}:%25<..<%~%# " -unset PS1_HL -RPS1="#%(0?..%?,)%(1v.%1v,.)%!" +_MIDDLE="%1v%(2v.|%B%2v%b|.)%(3v.%3v.)" +if is_root; then + _MIDDLE="%25<..<%~%<<" + _PS1_HL=U +fi +PS1="%${_PS1_HL:=B}%m%${(L)_PS1_HL}:${_MIDDLE}%# " +unset _PS1_HL +unset _MIDDLE + +RPS1="#%(0?..%?,)%!" # vim:ft=zsh