Last active
January 24, 2020 11:11
-
-
Save duyquang6/2b46e7e1097325dde5368ff54daa6d11 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-01-24T11:11:44.391Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"metadata": { | |
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
"publisherId": "Shan.code-settings-sync", | |
"publisherDisplayName": "Shan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "3.4.3" | |
}, | |
{ | |
"metadata": { | |
"id": "d6f6cfea-4b6f-41f4-b571-6ad2ab7918da", | |
"publisherId": "ms-vscode.Go", | |
"publisherDisplayName": "ms-vscode" | |
}, | |
"name": "Go", | |
"publisher": "ms-vscode", | |
"version": "0.12.0" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "alt+f", | |
"command": "go.godoctor.extract" | |
}, | |
{ | |
"key": "alt+v", | |
"command": "go.godoctor.var" | |
}, | |
{ | |
"key": "alt+oem_comma", | |
"command": "workbench.action.openSettingsJson" | |
}, | |
{ | |
"key": "alt+oem_comma", | |
"command": "workbench.action.openSettings2" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"go.formatTool": "goimports", | |
"editor.fontSize": 16, | |
"go.useLanguageServer": true, | |
"gopls": { | |
"usePlaceholders": true, // add parameter placeholders when completing a function | |
// Experimental settings | |
"completeUnimported": true, // autocomplete unimported packages | |
"deepCompletion": true, // enable deep completion | |
}, | |
"[go]": { | |
"editor.snippetSuggestions": "none", | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true, | |
}, | |
}, | |
"go.autocompleteUnimportedPackages": true, | |
"go.lintTool": "golangci-lint", | |
"go.useCodeSnippetsOnFunctionSuggestWithoutType": true, | |
"go.useCodeSnippetsOnFunctionSuggest": true, | |
"sync.gist": "2b46e7e1097325dde5368ff54daa6d11" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment