Skip to content

Instantly share code, notes, and snippets.

@EduardoRodriguesF
Last active June 12, 2022 22:41
Show Gist options
  • Save EduardoRodriguesF/99445b15d9850e3559136b5d77f4d7e9 to your computer and use it in GitHub Desktop.
Save EduardoRodriguesF/99445b15d9850e3559136b5d77f4d7e9 to your computer and use it in GitHub Desktop.
VS Code settings
{
"workbench.colorTheme": "Omni Owl",
"editor.fontFamily": "'JetBrains Mono', 'Cascadia Code', 'Consolas', Arial",
"editor.fontLigatures": true,
"editor.lineHeight": 28,
"git.enableSmartCommit": true,
"workbench.tree.indent": 20,
"explorer.fileNesting.enabled": true,
"files.autoSave": "off",
"eslint.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"workbench.iconTheme": "material-icon-theme",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.fontSize": 16,
"editor.tabSize": 2,
"material-icon-theme.activeIconPack": "nest",
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock",
"store": "redux-store"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"action.ts": "redux-action",
"reducer.ts": "redux-reducer",
"store.ts": "redux-store"
},
"workbench.startupEditor": "newUntitledFile",
"liveServer.settings.donotShowInfoMsg": true,
"terminal.integrated.fontFamily": "monospace",
"diffEditor.ignoreTrimWhitespace": false,
"security.workspace.trust.untrustedFiles": "open",
"git.confirmSync": false,
"git.autofetch": true,
"editor.inlineSuggest.enabled": true,
"vscode-edge-devtools.mirrorEdits": true,
"liveServer.settings.donotVerifyTags": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"svg.preview.mode": "svg",
"svelte.enable-ts-plugin": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.bracketPairColorization.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment