Skip to content

Instantly share code, notes, and snippets.

@bloudermilk
Created January 7, 2025 19:42
Show Gist options
  • Save bloudermilk/7d6671eef485e5da8c6dcfa7e4d1640c to your computer and use it in GitHub Desktop.
Save bloudermilk/7d6671eef485e5da8c6dcfa7e4d1640c to your computer and use it in GitHub Desktop.
VSCode Settings
{
"telemetry.telemetryLevel": "error",
"editor.fontSize": 13,
"editor.tabSize": 2,
"files.exclude": {
"**/node_modules": true
},
"editor.minimap.enabled": false,
"editor.scrollBeyondLastLine": false,
"files.trimTrailingWhitespace": true,
"extensions.ignoreRecommendations": true,
"window.autoDetectColorScheme": true,
"editor.acceptSuggestionOnEnter": "on",
"diffEditor.ignoreTrimWhitespace": false,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"workbench.preferredHighContrastColorTheme": "Default Dark Modern",
"workbench.preferredHighContrastLightColorTheme": "Default Light Modern",
"editor.accessibilitySupport": "off",
"github.copilot.advanced": {},
"breadcrumbs.enabled": false,
"python.analysis.autoImportCompletions": true,
"jupyter.widgetScriptSources": ["jsdelivr.com", "unpkg.com"],
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
},
"window.zoomLevel": 1,
"playwright.reuseBrowser": true,
"github.copilot.editor.enableAutoCompletions": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment