1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-01 14:00:27 +00:00
prezto/lib/prompt.zsh

30 lines
461 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"
function oh_my_zsh_theme_precmd() {
# Blank function; override this in your themes
}
2009-08-31 17:46:16 +00:00
source "$ZSH/themes/$ZSH_THEME.zsh-theme"