oh-my-zsh/lib/prompt.zsh

26 lines
373 B
Bash
Raw Normal View History

export PAGER=less
export LC_CTYPE=en_US.UTF-8
2009-09-22 23:49:00 +00:00
# speed stuff.
2009-09-22 23:49:00 +00:00
#setopt no_beep
setopt auto_cd
setopt multios
setopt cdablevarS
if [[ x$WINDOW != x ]]
then
SCREEN_NO="%B$WINDOW%b "
else
SCREEN_NO=""
fi
PS1="%n@%m:%~%# "
# Setup the prompt with pretty colors
setopt prompt_subst
export LSCOLORS="Gxfxcxdxbxegedabagacad"
2009-08-31 17:46:16 +00:00
source "$ZSH/themes/$ZSH_THEME.zsh-theme"