Skip to content

Instantly share code, notes, and snippets.

@marselester
Last active June 15, 2023 19:42
Show Gist options
  • Select an option

  • Save marselester/abcfd57afa9209a1b6f9b36adaf85140 to your computer and use it in GitHub Desktop.

Select an option

Save marselester/abcfd57afa9209a1b6f9b36adaf85140 to your computer and use it in GitHub Desktop.
vscode settings
{
"editor.fontSize": 14,
"editor.autoClosingBrackets": "never",
"editor.matchBrackets": "never",
"editor.quickSuggestions": false,
"editor.renderLineHighlight": "none",
"editor.selectionHighlight": false,
"editor.scrollBeyondLastLine": false,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"editor.autoClosingQuotes": "never",
"editor.autoSurround": "never",
"editor.codeActionsOnSave": [
"editor.action.formatDocument"
],
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.pyc": true
},
"go.formatTool": "goimports",
"go.useLanguageServer": true,
"window.zoomLevel": 1,
"extensions.ignoreRecommendations": true,
"workbench.colorTheme": "Visual Studio Dark",
"workbench.startupEditor": "newUntitledFile",
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"update.showReleaseNotes": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment