Skip to content

Instantly share code, notes, and snippets.

@therako
Last active March 3, 2017 03:19
Show Gist options
  • Save therako/eb3ce1b7554b35a19ae01e4f257f422d to your computer and use it in GitHub Desktop.
Save therako/eb3ce1b7554b35a19ae01e4f257f422d to your computer and use it in GitHub Desktop.
My sublime configs
go get -u golang.org/x/tools/cmd/goimports
go get -u golang.org/x/tools/cmd/godoc
{
"fmt_cmd": [
"goimports"
],
"env": {
"GOPATH": "$HOME/Code/go",
"PATH": "$GOPATH/bin:$PATH"
},
"comp_lint_enabled": true,
"comp_lint_commands": [
{
"cmd": [
"golint *.go"
],
"shell": true
},
{
"cmd": [
"go",
"vet"
]
},
{
"cmd": [
"go",
"install"
]
}
],
"on_save": [
{
"cmd": "gs_comp_lint"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment