Adding powerline-shell for zsh

master
Dustin Swan 11 years ago
parent 2159f5481a
commit eea0ffcdc0

@ -0,0 +1 @@
Subproject commit 5db13df59db7074da94b99b56379068e2e81463b

16
zshrc

@ -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"

Loading…
Cancel
Save