-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo_install.sh
More file actions
executable file
·23 lines (20 loc) · 836 Bytes
/
go_install.sh
File metadata and controls
executable file
·23 lines (20 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
# setup go
export GOPATH=$HOME/Programming/Go
export PATH=$PATH:$GOPATH/bin
# gocode is used by many editors to provide intellisense
go get -u github.com/nsf/gocode
# gotags is a ctags-compatible tag generator for Go
go get -u github.com/jstemmer/gotags
# goimports is something you should run when saving code to fill in import paths
go get -u golang.org/x/tools/cmd/goimports
# golint should be run after every build to check your code
go get -u github.com/golang/lint/golint
# find symbol information in Go source
go get -u github.com/rogpeppe/godef
# goserv
#go get -u github.com/gotschmarcel/goserv
# gorename is used by many editors to provide identifier rename support
#go get -u golang.org/x/tools/cmd/gorename
# oracle is a tool that help with code navigation and search
#go get -u golang.org/x/tools/cmd/oracle