Skip to content

Instantly share code, notes, and snippets.

@sarojkumar007
Created June 18, 2022 16:05
Show Gist options
  • Save sarojkumar007/fc60bb1dc87d02aac899d2c82e08c6ea to your computer and use it in GitHub Desktop.
Save sarojkumar007/fc60bb1dc87d02aac899d2c82e08c6ea to your computer and use it in GitHub Desktop.
VSCode Settings
{
"breadcrumbs.enabled": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.detectIndentation": true,
"editor.fontFamily": "'Source Code Pro', 'JetBrains Mono', 'monospace', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.formatOnSave": true,
"editor.hover.enabled": false,
"editor.insertSpaces": false,
"editor.minimap.enabled": false,
"editor.minimap.maxColumn": 100,
"editor.minimap.renderCharacters": false,
"editor.minimap.scale": 1,
"editor.multiCursorMergeOverlapping": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.parameterHints.enabled": true,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"editor.suggest.snippetsPreventQuickSuggestions": true,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"emmet.includeLanguages": {
"vue-html": "html",
"javascript": "javascriptreact"
},
"emmet.showSuggestionsAsSnippets": true,
"explorer.confirmDelete": false,
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false,
"files.autoSaveDelay": 3000,
"git.alwaysShowStagedChangesResourceGroup": true,
"html.suggest.html5": false,
"material-icon-theme.activeIconPack": "react",
"material-icon-theme.folders.color": "#fdd835",
"material-icon-theme.folders.theme": "specific",
"php.validate.executablePath": "",
"python.pythonPath": "/usr/bin/python3",
"search.showLineNumbers": true,
"sync.autoDownload": false,
"sync.autoUpload": true,
"sync.gist": "<your_sync_gist_id>",
"sync.quietSync": true,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"typescript.updateImportsOnFileMove.enabled": "always",
"update.mode": "manual",
"window.zoomLevel": 1,
"workbench.activityBar.visible": true,
"workbench.colorCustomizations": {
"statusBar.background": "#0066b8", //125C13
"statusBar.foreground": "#fff",
"activityBar.background": "#090910",
"activityBar.foreground": "#fff"
},
"workbench.colorTheme": "GitHub Dark",
"workbench.editor.highlightModifiedTabs": true,
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "left",
"workbench.startupEditor": "none",
"[python]": {
"editor.detectIndentation": true,
"editor.tabSize": 2,
"editor.defaultFormatter": "ms-python.python"
},
"python.formatting.provider": "none"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment