Skip to content

Instantly share code, notes, and snippets.

@angeloevangelista
Last active April 18, 2025 22:08
Show Gist options
  • Select an option

  • Save angeloevangelista/7d0fc165d14404edac119d4b53600a92 to your computer and use it in GitHub Desktop.

Select an option

Save angeloevangelista/7d0fc165d14404edac119d4b53600a92 to your computer and use it in GitHub Desktop.
VS Code JSON settings
{
"breadcrumbs.filePath": "on",
"breadcrumbs.enabled": true,
"languageTool.enabled": true,
"languageTool.language": "en",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.labelFormat": "short",
"workbench.iconTheme": "material-icon-theme",
"workbench.list.smoothScrolling": true,
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.lineHeight": 18,
"editor.insertSpaces": true,
"editor.fontLigatures": true,
"editor.mouseWheelZoom": false,
"editor.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.suggestSelection": "first",
"editor.fontFamily": "Fira Code, JetBrains Mono, 'Droid Sans Mono'",
"editor.detectIndentation": false,
"editor.renderLineHighlight": "all",
"editor.rulers": [80, 120],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.inlineSuggest.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.fixAll.eslint": "explicit"
},
"terminal.integrated.fontSize": 12,
"terminal.integrated.fontWeight": "200",
"terminal.integrated.fontWeightBold": "500",
"terminal.integrated.fontFamily": "JetBrains Mono, Fira Code",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"files.eol": "\n",
"files.enableTrash": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"eslint.enable": true,
"sass.lint.enable": true,
"explorer.compactFolders": false,
"python.linting.pylintEnabled": true,
"cSpell.language": "en,en-US,pt,pt_BR",
"diffEditor.ignoreTrimWhitespace": false,
"liveServer.settings.donotShowInfoMsg": true,
"security.workspace.trust.untrustedFiles": "open",
"java.configuration.checkProjectSettingsExclusions": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"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",
"ViewModels": "views",
"partials": "cluster"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
".zshrc": "tune"
},
"extensions": {
"wtf": "fake prop just to avoid adding these fellas in a comment",
"ids": [
"unifiedjs.vscode-mdx",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"ms-vsliveshare.vsliveshare",
"ritwickdey.LiveServer",
"EditorConfig.EditorConfig",
"naumovs.color-highlight",
"ecmel.vscode-html-css",
"streetsidesoftware.code-spell-checker",
"styled-components.vscode-styled-components",
"PKief.material-icon-theme",
]
},
"workbench.colorTheme": "Dracula Theme"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment