Skip to content

Instantly share code, notes, and snippets.

@sjenning
Created September 4, 2018 14:59
Show Gist options
  • Save sjenning/14cddc20026cd2365d9a896955570d00 to your computer and use it in GitHub Desktop.
Save sjenning/14cddc20026cd2365d9a896955570d00 to your computer and use it in GitHub Desktop.
vscode config
// Place your settings in this file to overwrite the default settings
{
"go.buildOnSave": true,
"go.lintOnSave": true,
"go.vetOnSave": true,
"go.buildTags": "",
"go.buildFlags": [],
"go.lintFlags": [],
"go.vetFlags": [],
"go.coverOnSave": false,
"go.useCodeSnippetsOnFunctionSuggest": false,
"go.formatOnSave": true,
"go.formatTool": "goimports",
"editor.insertSpaces": false,
"git.autofetch": false,
"go.gocodeAutoBuild": true,
"files.associations": {
"*.tpl": "html"
},
"go.gotoSymbol.ignoreFolders": [
"cmd/cluster-capacity",
"cmd/service-catalog"
],
"editor.renderWhitespace": "boundary",
"editor.fontSize": 13,
"window.zoomLevel": 0,
"search.exclude": {
".git": true,
"_output": true
},
"go.gopath": "/home/sjennings/projects/go",
"editor.cursorBlinking": "solid",
"extensions.ignoreRecommendations": true,
"git.path": "/usr/bin/git",
"explorer.confirmDelete": false,
"search.followSymlinks": false,
"breadcrumbs.enabled": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment