1
0
mirror of https://github.com/akelge/vim synced 2025-09-15 19:14:21 +00:00

New ZSH folder (3)

This commit is contained in:
2010-11-18 08:54:27 +00:00
parent 5b09568680
commit afbedd3eee
15 changed files with 0 additions and 0 deletions

11
zsh/zsh.d/30-prompt Normal file
View File

@ -0,0 +1,11 @@
#######################################################################################
# Setup PROMPT
if [ ${TERM[0,5]} = "xterm" ] || [ ${TERM} = "rxvt" ]; then
# We are on xterminal
PS1="%{]2;%n@%m:%.%}%{]1; %m:%. %}%B<%l> %~ %#%b "
else
# We are not on xterminal
PS1="%B[%l] %n@%m:%~ %#%b "
fi
# vim: set ts=4 sw=4 tw=0 ft=zsh :