powerline fixes

This commit is contained in:
2021-09-20 17:59:03 -04:00
parent 1e0bac4277
commit d565ecb473
3 changed files with 7 additions and 0 deletions

View File

@@ -38,6 +38,11 @@ if [ "$system_type" = "Darwin" ]; then
echo "Updating homebrew bundle"
brew bundle --global
fi
# Install powerline-go if necessary
if ! command -v powerline-go >/dev/null 2>&1; then
go install github.com/justjanne/powerline-go@latest
fi
fi
# Linux Specifics

View File

@@ -0,0 +1,2 @@
export PATH="$HOME/go/bin:$PATH"
export GOPATH="$HOME/go"