28 lines
614 B
JSON
28 lines
614 B
JSON
{
|
|
"files.autoSave": "onFocusChange",
|
|
"telemetry.telemetryLevel": "off",
|
|
"files.insertFinalNewline": true,
|
|
"vim.handleKeys": {
|
|
"<C-d>": false,
|
|
"<C-c>": false,
|
|
"<C-v>": false,
|
|
"<C-x>": false,
|
|
"<C-f>": false,
|
|
"<C-a>": false,
|
|
},
|
|
"go.formatTool": "gofumpt",
|
|
// "editor.formatOnSave": false,
|
|
"editor.formatOnSave": true,
|
|
"editor.insertSpaces": false,
|
|
"editor.detectIndentation": false,
|
|
"go.docsTool": "gogetdoc",
|
|
"editor.suggestSelection": "first",
|
|
"files.associations": {
|
|
"*.ts": "typescript"
|
|
},
|
|
"[typescript]": {
|
|
"editor.formatOnSave": false
|
|
},
|
|
"go.toolsManagement.autoUpdate": true
|
|
}
|