Skip to content

Instantly share code, notes, and snippets.

@terciocm
Created August 19, 2022 17:30
Show Gist options
  • Save terciocm/612d059056fbfbde5e3c0157ce206c1f to your computer and use it in GitHub Desktop.
Save terciocm/612d059056fbfbde5e3c0157ce206c1f to your computer and use it in GitHub Desktop.
{
// Security
"security.workspace.trust.untrustedFiles": "newWindow",
// Terminal
"terminal.integrated.fontSize": 14,
// Explorer
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
// Explorer -> Files
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 500,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/__pycache__": true,
},
// Workbench
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.labelFormat": "short",
// Editor
"screencastMode.onlyKeyboardShortcuts": true,
"breadcrumbs.enabled": true,
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.lineHeight": 19,
"editor.fontLigatures": true,
"editor.rulers": [
80,
120
],
"editor.inlineSuggest.enabled": true,
"editor.accessibilitySupport": "off",
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.eslint": true,
},
"editor.renderLineHighlight": "gutter",
"editor.semanticHighlighting.enabled": false,
"editor.parameterHints.enabled": false,
// Editor -> Formats
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
// Javascript
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
// Typescript
"typescript.suggest.autoImports": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.tsserver.log": "off",
// Extensions
"extensions.ignoreRecommendations": true,
// Extensions -> Emmet
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment