making zsh crap a bit more useful.

considering (finally) learning and/or switching to zsh as primary
This commit is contained in:
Dan Buch 2012-03-14 00:34:07 -04:00
parent cc6eb73c35
commit 5ab0c31420

5
zshrc
View File

@ -6,3 +6,8 @@ unsetopt autocd beep notify
bindkey -v
autoload -Uz compinit
compinit
export PS1="\$ "
function precmd() {
echo "$USER@$HOST:$PWD"
}