Last active
August 18, 2026 12:39
-
-
Save beatrizsmerino/178d003fd19123dd597afa5a93f5db51 to your computer and use it in GitHub Desktop.
Settings of Visual Studio Code
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
| { | |
| // SHOW FILES | |
| "files.exclude": { | |
| "**/.git": false, | |
| }, | |
| // WINDOW | |
| "window.zoomLevel": 1, | |
| // EXPLORER | |
| "explorer.compactFolders": false, | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| // WORKBENCH | |
| "workbench.colorTheme": "Electron vue darker", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.editor.splitInGroupLayout": "vertical", | |
| // TERMINAL | |
| "terminal.integrated.defaultProfile.osx": "zsh", | |
| "terminal.integrated.defaultProfile.linux": "zsh", | |
| "terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome Regular'", | |
| "terminal.integrated.fontSize": 14, | |
| "terminal.integrated.inheritEnv": false, | |
| // Fig / Amazon Q CLI — detecta nueva sesión de terminal | |
| "terminal.integrated.env.osx": { | |
| "FIG_NEW_SESSION": "1", | |
| }, | |
| "terminal.integrated.env.linux": { | |
| "FIG_NEW_SESSION": "1", | |
| }, | |
| // EDITOR | |
| "editor.accessibilitySupport": "off", | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": "explicit", | |
| "source.fixAll.prettier": "explicit", | |
| // sortJSON = extensión "Sort JSON objects" | |
| "source.fixAll.sortJSON": "explicit", | |
| "source.fixAll.stylelint": "explicit", | |
| }, | |
| "editor.fontFamily": "JetBrains Mono, Menlo, Monaco, 'Courier New' monospace", | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.detectIndentation": false, | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 12, | |
| "editor.formatOnSave": true, | |
| "editor.guides.bracketPairs": "active", | |
| "editor.inlineSuggest.enabled": true, | |
| "editor.insertSpaces": false, | |
| "editor.lineHeight": 20, | |
| "editor.linkedEditing": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.quickSuggestions": { | |
| "other": true, | |
| "comments": true, | |
| "strings": true, | |
| }, | |
| "editor.suggestSelection": "first", | |
| "editor.tabSize": 4, | |
| "editor.wordWrap": "wordWrapColumn", | |
| // PRETTIER | |
| "prettier.tabWidth": 4, | |
| "prettier.useTabs": true, | |
| // ESLINT | |
| "eslint.format.enable": true, | |
| // GIT | |
| "git.autofetch": true, | |
| "gitlens.advanced.messages": { | |
| "suppressCommitHasNoPreviousCommitWarning": false, | |
| "suppressCommitNotFoundWarning": false, | |
| "suppressFileNotUnderSourceControlWarning": false, | |
| "suppressGitVersionWarning": false, | |
| "suppressLineUncommittedWarning": false, | |
| "suppressNoRepositoryWarning": false, | |
| }, | |
| // GITHUB | |
| "github.copilot.enable": { | |
| "*": true, | |
| "yaml": true, | |
| "plaintext": true, | |
| "markdown": true, | |
| }, | |
| // HTML | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features", | |
| }, | |
| "html.format.indentInnerHtml": true, | |
| // SASS/SCSS | |
| "[scss]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "liveSassCompile.settings.autoprefix": [ | |
| "> 1%", | |
| "last 2 versions" | |
| ], | |
| "liveSassCompile.settings.excludeList": [ | |
| "/**/node_modules/**", | |
| "/.vscode/**", | |
| ], | |
| "liveSassCompile.settings.formats": [ | |
| { | |
| "extensionName": ".css", | |
| "format": "expanded", | |
| "savePath": "/css", | |
| }, | |
| { | |
| "extensionName": ".min.css", | |
| "format": "compressed", | |
| "savePath": "/dist/css", | |
| }, | |
| ], | |
| "liveSassCompile.settings.generateMap": true, | |
| "sass.format.deleteEmptyRows": false, | |
| "sass.format.deleteWhitespace": false, | |
| "sass.format.enabled": false, | |
| // JSON | |
| "[json]": { | |
| "editor.defaultFormatter": "vscode.json-language-features", | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "vscode.json-language-features", | |
| }, | |
| // JS | |
| "js/ts.updateImportsOnFileMove.enabled": "always", | |
| "[javascript]": { | |
| "editor.formatOnSave": true, | |
| "editor.defaultFormatter": "vscode.typescript-language-features", | |
| }, | |
| // TYPESCRIPT | |
| "js/ts.tsdk.path": "node_modules/typescript/lib", | |
| // TypeScript-Go: compilador nativo experimental (más rápido) | |
| "js/ts.experimental.useTsgo": true, | |
| "[typescript]": { | |
| "editor.formatOnSave": true, | |
| }, | |
| // VUE | |
| "[vue]": { | |
| "editor.defaultFormatter": "Vue.volar", | |
| }, | |
| // Vetur deshabilitada globalmente (Volar activa) — se reactiva puntualmente en proyectos Vue 2 | |
| "vetur.format.defaultFormatter.html": "js-beautify-html", | |
| "vetur.format.defaultFormatter.js": "vscode-typescript", | |
| "vetur.format.options.tabSize": 4, | |
| "vetur.format.options.useTabs": true, | |
| "vetur.format.scriptInitialIndent": true, | |
| "vetur.format.styleInitialIndent": true, | |
| "volar.autoCompleteRefs": true, | |
| // PHP | |
| "[php]": { | |
| "editor.defaultFormatter": "bmewburn.vscode-intelephense-client", | |
| }, | |
| "php.validate.executablePath": "/home/linuxbrew/.linuxbrew/bin/php", | |
| "intelephense.environment.phpVersion": "8.5.9", | |
| // VSC | |
| // abre archivos no confiables sin pedir confirmación | |
| "security.workspace.trust.untrustedFiles": "open", | |
| // EMOJI | |
| "emojisense.languages": { | |
| "markdown": true, | |
| "plaintext": { | |
| "markupCompletionsEnabled": false, | |
| "emojiDecoratorsEnabled": false, | |
| }, | |
| "scminput": true, // language used in the source control commit message box | |
| }, | |
| // INCREMENTOR | |
| "incrementor.enums.values": [ | |
| [ | |
| "false", | |
| "true" | |
| ], | |
| [ | |
| "const", | |
| "let" | |
| ], | |
| [ | |
| "rem", | |
| "em", | |
| "px" | |
| ], | |
| [ | |
| "flex", | |
| "inline-block", | |
| "block" | |
| ], | |
| [ | |
| "public", | |
| "private", | |
| "protected" | |
| ], | |
| ], | |
| "window.newWindowProfile": "Predeterminado", | |
| "chat.sessionSync.enabled": true, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment