Skip to content

Instantly share code, notes, and snippets.

@ricardodsanchez
Created March 27, 2020 23:50
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 ricardodsanchez/179f693c8c843abc782e3e40112904aa to your computer and use it in GitHub Desktop.
Save ricardodsanchez/179f693c8c843abc782e3e40112904aa to your computer and use it in GitHub Desktop.
Basic VS Code settings
{
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"files.autoSave": "afterDelay",
"files.associations": {
"*.md": "markdown"
},
"window.zoomLevel": 0,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"breadcrumbs.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.acceptSuggestionOnEnter": "on",
"editor.detectIndentation": false,
"editor.fontFamily": "'Source Code Pro', Menlo, Consolas, Courier, monospace",
"editor.fontSize": 13,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true,
},
"editor.renderWhitespace": "none",
"editor.snippetSuggestions": "top",
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"extensions.ignoreRecommendations": true,
"extensions.showRecommendationsOnlyOnDemand": true,
"files.exclude": {
"**/._*": true
},
"files.insertFinalNewline": true,
"html.format.endWithNewline": true,
"html.format.extraLiners": "body",
"html.format.indentInnerHtml": true,
"html.format.unformatted": "b,em,i,span,strong,wbr",
"html.format.wrapLineLength": 0,
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.port": 0,
"workbench.colorCustomizations": {
"editorIndentGuide.activeBackground": "#FFA500"
},
"workbench.editor.tabSizing": "shrink",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"gitlens.advanced.messages": {
"suppressGitDisabledWarning": true
}
}
@ricardodsanchez
Copy link
Author

ricardodsanchez commented Mar 27, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment