Skip to content

Instantly share code, notes, and snippets.

@marselester
Last active June 15, 2023 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marselester/abcfd57afa9209a1b6f9b36adaf85140 to your computer and use it in GitHub Desktop.
Save marselester/abcfd57afa9209a1b6f9b36adaf85140 to your computer and use it in GitHub Desktop.
vscode settings
{
"editor.fontSize": 16,
"editor.autoClosingBrackets": "never",
"editor.matchBrackets": "never",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"editor.renderLineHighlight": "none",
"editor.selectionHighlight": false,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"editor.autoClosingQuotes": "never",
"editor.autoSurround": "never",
"editor.wordWrap": "on",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.pyc": true
},
"go.formatTool": "goimports",
"extensions.ignoreRecommendations": true,
"workbench.startupEditor": "newUntitledFile",
"telemetry.telemetryLevel":"off",
"update.showReleaseNotes": false,
"go.toolsManagement.autoUpdate": true,
"window.zoomLevel": 3,
"go.survey.prompt": false,
"go.lintOnSave": "off",
"audioCues.lineHasError": "off",
"audioCues.volume": 10
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment