Basic VS Code settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These are basic VS Code settings when using must-have extensions for web development listed here:
https://ricardodsanchez.com/2020/03/21/must-have-vs-code-extensions-for-web-development/
Versión en español:
https://todoaprende.com/2020/03/23/extensiones-de-vs-code-imprescindibles-para-desarrolladores-web/