]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zshrc/80_prompt
use local variables and do not unset
[zsh.git] / .zsh / zshrc / 80_prompt
1 # zshrc/80_prompt
2 #
3 # Formats the shell prompt
4 #
5 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
7 #
8 # Source repository: http://git.madduck.net/v/etc/zsh.git
9 #
10
11 local _MIDDLE="%1v%(2v.|%B%2v%b|.)%(3v.%3v.)"
12 local _PS1_HL
13 if is_root; then
14   _MIDDLE="%25<..<%~%<<"
15   _PS1_HL=U
16 fi
17 PS1="%${_PS1_HL:=B}%m%${(L)_PS1_HL}:${_MIDDLE}%# "
18 RPS1="#%(0?..%?,)%!"
19
20 # vim:ft=zsh