]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zshrc/80_prompt
reordering of zshrc files
[zsh.git] / .zsh / zshrc / 80_prompt
1 # zshrc/90_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 _MIDDLE="%1v%(2v.|%B%2v%b|.)%(3v.%3v.)"
12 if is_root; then
13   _MIDDLE="%25<..<%~%<<"
14   _PS1_HL=U
15 fi
16 PS1="%${_PS1_HL:=B}%m%${(L)_PS1_HL}:${_MIDDLE}%# "
17 unset _PS1_HL
18 unset _MIDDLE
19
20 RPS1="#%(0?..%?,)%!"
21
22 # vim:ft=zsh