Skip to content

Instantly share code, notes, and snippets.

@pjbgf
Last active November 8, 2019 14:40
Show Gist options
  • Save pjbgf/4f52f10465ecf773ed15dbcea59e5743 to your computer and use it in GitHub Desktop.
Save pjbgf/4f52f10465ecf773ed15dbcea59e5743 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"go.autocompleteUnimportedPackages": true,
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"terminal.integrated.fontFamily": "'Source Code Pro for Powerline', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontFamily": "'Source Code Pro for Powerline', 'monospace', monospace, 'Droid Sans Fallback'",
"go.formatTool": "goimports",
"editor.fontSize": 18,
"terminal.integrated.fontSize": 18,
"markdown.preview.fontSize": 18,
"git.enableSmartCommit": true,
"debug.console.fontSize": 16,
"files.associations": {
"*.alpine": "dockerfile",
"*.ubuntu": "dockerfile",
"*.scratch": "dockerfile",
"*.distroless": "dockerfile",
"*.disco": "dockerfile"
},
"go.delveConfig":{
"dlvLoadConfig": {
"followPointers": true,
"maxVariableRecurse": 1,
"maxStringLen": 8000,
"maxArrayValues": 64,
"maxStructFields": -1
},
"apiVersion": 2,
"showGlobalVariables": true
},
"files.watcherExclude": {
"**/kubernetes/_artifacts/**": true,
"**/kubernetes/_output/**": true,
"**/kubernetes/staging/**": true,
"**/kubernetes/test/**": true,
"**/kubernetes/third_party/**": true,
"**/kubernetes/vendor/**": true
},
"go.useLanguageServer": true,
"telemetry.enableTelemetry": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment