Skip to content

Instantly share code, notes, and snippets.

@tachesimazzoca
Last active January 23, 2019 11:29
Show Gist options
  • Save tachesimazzoca/57e88b41a7ff3b097582dc10ea432c5e to your computer and use it in GitHub Desktop.
Save tachesimazzoca/57e88b41a7ff3b097582dc10ea432c5e to your computer and use it in GitHub Desktop.
Visual Studio Code Settings
#!/bin/sh
set -e
go get -u -v github.com/mdempsky/gocode
go get -u -v github.com/uudashr/gopkgs/cmd/gopkgs
go get -u -v github.com/ramya-rao-a/go-outline
go get -u -v github.com/acroca/go-symbols
go get -u -v golang.org/x/tools/cmd/guru
go get -u -v golang.org/x/tools/cmd/gorename
go get -u -v github.com/derekparker/delve/cmd/dlv
go get -u -v github.com/rogpeppe/godef
go get -u -v github.com/sqs/goreturns
go get -u -v golang.org/x/lint/golint
{
"files.eol": "\n",
"editor.fontSize": 13,
"terminal.integrated.fontSize": 13,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.shellArgs.windows": ["--login"],
"workbench.colorTheme": "Solarized Dark",
"go.lintFlags": ["--disable=all"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment