Adding powerline-shell for zsh

This commit is contained in:
Dustin Swan
2013-03-08 14:55:59 -07:00
parent 2159f5481a
commit eea0ffcdc0
2 changed files with 16 additions and 1 deletions

16
zshrc
View File

@@ -1,4 +1,18 @@
PROMPT="%~> "
# powerline-shell
function powerline_precmd() {
export PS1="$(~/dotfiles/powerline-shell/powerline-shell.py $? --shell zsh)"
}
function install_powerline_precmd() {
for s in "${precmd_functions[@]}"; do
if [ "$s" = "powerline_precmd" ]; then
return
fi
done
precmd_functions+=(powerline_precmd)
}
install_powerline_precmd
alias vi=vim
alias tmux="tmux -2"