switch to powerline-go, it appears to be much faster

pull/1/head
Andrew Coleman 2018-07-23 16:17:03 -04:00
parent 46cafbf01e
commit f94b51f313
1 changed files with 2 additions and 2 deletions

View File

@ -27,9 +27,9 @@ HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S "
for k in $HOME/bin/*.bash ; do . $k ; done
function _update_ps1() {
PS1="$(powerline-shell $?)"
PS1="$(powerline-go -error $?)"
}
if [[ $(which powerline-shell 2>/dev/null) && "$TERM" != "linux" && -z $TMUX ]]; then
if [[ $(which powerline-go 2>/dev/null) && "$TERM" != "linux" ]]; then
PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND"
else
PS1='[\[\033[01;32m\]\u@\h\[\033[00m\] \[\033[01;34m\]\w$(__git_ps1 " (%s)")\[\033[00m\]]\$ '