2012-02-26 19:38:01 +00:00
|
|
|
HISTFILE=~/.zsh-histfile
|
|
|
|
HISTSIZE=10000
|
|
|
|
SAVEHIST=100000
|
|
|
|
setopt appendhistory extendedglob nomatch
|
|
|
|
unsetopt autocd beep notify
|
|
|
|
bindkey -v
|
|
|
|
autoload -Uz compinit
|
|
|
|
compinit
|
2012-03-14 04:34:07 +00:00
|
|
|
|
|
|
|
export PS1="\$ "
|
|
|
|
function precmd() {
|
2012-04-10 05:00:30 +00:00
|
|
|
echo "$USER@$HOST:$(truncpwd)"
|
2012-03-14 04:34:07 +00:00
|
|
|
}
|