add go plugin

This commit is contained in:
MunifTanjim
2016-11-19 22:16:56 +06:00
parent 87a9190a79
commit a0f14898c9

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
cite about-plugin
about-plugin 'go environment variables & path configuration'
[ ! command -v go &>/dev/null ] && return
export GOROOT=${GOROOT:-$(go env | grep GOROOT | cut -d'"' -f2)}
pathmunge "${GOROOT}/bin"
export GOPATH=${GOPATH:-"$HOME/.go"}
pathmunge "${GOPATH}/bin"