mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
60 lines
2.0 KiB
Bash
Executable File
60 lines
2.0 KiB
Bash
Executable File
#
|
|
# Go (golang) environment setup.
|
|
#
|
|
|
|
# ==============================================================================
|
|
# g - Simple go version manager, gluten-free
|
|
# ==============================================================================
|
|
|
|
# Create symlink for "g" called "gv", as I have "g" aliased to "git".
|
|
zinit ice wait lucid as'program' pick'bin/g' from'gh' \
|
|
atclone'cd bin && ln -s g gv' atpull'%atclone'
|
|
zinit light stefanmaric/g
|
|
|
|
# ==============================================================================
|
|
# global golang packages
|
|
# ==============================================================================
|
|
|
|
install_go_global_packages() {
|
|
local packages=(
|
|
github.com/akavel/up@latest
|
|
github.com/asciimoo/wuzz@latest
|
|
github.com/cweill/gotests/...@latest
|
|
github.com/cweill/gotests/gotests@latest
|
|
github.com/erning/gorun@latest
|
|
github.com/go-delve/delve/cmd/dlv@latest
|
|
github.com/golang/mock/gomock@latest
|
|
github.com/golang/mock/mockgen@latest
|
|
github.com/icholy/gomajor@latest
|
|
github.com/kisielk/errcheck@latest
|
|
github.com/lighttiger2505/sqls@latest
|
|
github.com/mdempsky/unconvert@latest
|
|
github.com/ramya-rao-a/go-outline@latest
|
|
github.com/rogpeppe/godef@latest
|
|
github.com/segmentio/golines@latest
|
|
github.com/uudashr/gopkgs/v2/cmd/gopkgs@latest
|
|
golang.org/x/lint/golint@latest
|
|
golang.org/x/tools/cmd/godoc@latest
|
|
golang.org/x/tools/cmd/goimports@latest
|
|
golang.org/x/tools/cmd/guru@latest
|
|
golang.org/x/tools/cmd/stringer@latest
|
|
golang.org/x/tools/gopls@latest
|
|
mvdan.cc/gofumpt/gofumports@latest
|
|
mvdan.cc/gofumpt@latest
|
|
)
|
|
|
|
for package in "${packages[@]}"; do
|
|
echo "installing/updating \"$package\""
|
|
if [[ "$package" == *"@"* ]]; then
|
|
GO111MODULE=on go install "$package"
|
|
else
|
|
GO111MODULE=on go get -u "$package"
|
|
fi
|
|
done
|
|
|
|
if command-exists goenv && [ "$(goenv version-name)" != "system" ]; then
|
|
echo "running: goenv rehash..."
|
|
goenv rehash
|
|
fi
|
|
}
|