Last active
February 16, 2026 23:32
-
-
Save kevinacuna1/8deae6195f310954836844d9cc4003aa to your computer and use it in GitHub Desktop.
Cheatsheet de configuración de Visual Studio Code en settings.json. Incluye opciones esenciales para editor, archivos, terminal, explorador, apariencia y formateadores por lenguaje. Ideal para mantener un entorno limpio, consistente y productivo sin depender de Prettier global.
This file contains hidden or 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
| { | |
| // 🎨 Apariencia | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.colorTheme": "Flatland Monokai", | |
| "editor.fontSize": 18, | |
| "editor.wordWrap": "on", | |
| "editor.cursorBlinking": "phase", | |
| // ❌ Quitar círculos/puntitos de espacios | |
| "editor.renderWhitespace": "none", | |
| "editor.renderControlCharacters": false, | |
| // ✅ Más separación visual entre bloques | |
| "editor.padding.top": 12, | |
| "editor.padding.bottom": 12, | |
| // ✅ Indent guides más visibles | |
| "editor.guides.indentation": true, | |
| "editor.guides.highlightActiveIndentation": true, | |
| "editor.guides.bracketPairs": true, | |
| // 💾 Guardado y seguridad | |
| "files.autoSave": "afterDelay", | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| // ⚡ Formato y estilo de código | |
| "editor.formatOnSave": true, | |
| "editor.formatOnType": true, | |
| "editor.tabSize": 2, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "prettier.semi": false, | |
| "prettier.singleQuote": true, | |
| "prettier.jsxSingleQuote": true, | |
| "typescript.format.semicolons": "remove", | |
| // ✨ Sugerencias y edición inteligente | |
| "editor.linkedEditing": true, | |
| "editor.inlineSuggest.enabled": true, | |
| // 🖥️ Terminal integrada | |
| "terminal.integrated.fontSize": 18, | |
| "terminal.integrated.cursorStyle": "underline", | |
| "terminal.integrated.cursorBlinking": true, | |
| // 🌐 Live Server | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "liveServer.settings.AdvanceCustomBrowserCmdLine": "", | |
| // 🔧 Lenguajes específicos | |
| "[java]": { | |
| "editor.defaultFormatter": "Oracle.oracle-java" | |
| }, | |
| "php.validate.executablePath": "", | |
| // 🚀 Emmet | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact", | |
| "vue-html": "html", | |
| "vue": "html", | |
| "markdown": "html" | |
| }, | |
| // 🤖 Copilot | |
| "github.copilot.nextEditSuggestions.enabled": true, | |
| // 📊 Telemetría | |
| "jdk.telemetry.enabled": true, | |
| "redhat.telemetry.enabled": true, | |
| // HTML | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment