Skip to content

Instantly share code, notes, and snippets.

@Ifmr24
Created September 11, 2019 19:58
Show Gist options
  • Save Ifmr24/9c2d1af6d33226a1cdcb492d8cd3f2d2 to your computer and use it in GitHub Desktop.
Save Ifmr24/9c2d1af6d33226a1cdcb492d8cd3f2d2 to your computer and use it in GitHub Desktop.
Mi configuración de VSCODE
{
"workbench.colorTheme": "One Dark Pro Vivid",
"editor.fontFamily": "'Fantasque Sans Mono', Consolas, 'Courier New', monospace",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.associations": {
"*.html": "html",
"*.js": "javascriptreact",
"*.jsx": "javascriptreact"
},
"workbench.tree.indent": 15,
"workbench.iconTheme": "material-icon-theme",
"editor.letterSpacing": 0.8,
"typescript.updateImportsOnFileMove.enabled": "never",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"[javascript]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"workbench.statusBar.visible": true,
"workbench.sideBar.location": "left",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"editor.minimap.enabled": false,
"terminal.integrated.fontSize": 15,
"javascript.updateImportsOnFileMove.enabled": "always",
"extensions.ignoreRecommendations": true,
"editor.formatOnSave": true,
"eslint.autoFixOnSave": true,
"git.autofetch": true,
"prettier.useTabs": true,
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0}",
"editor.fontSize": 15,
"editor.fontLigatures": true,
"editor.fontWeight": "400"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment