Skip to content

Instantly share code, notes, and snippets.

@pauloreis7
Last active September 28, 2022 13:24
Show Gist options
  • Save pauloreis7/0a7dac698d623162abee5c33e5008e59 to your computer and use it in GitHub Desktop.
Save pauloreis7/0a7dac698d623162abee5c33e5008e59 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.profiles.windows": {
"WSL": {
"path": ["C:\\WINDOWS\\System32\\wsl.exe"],
"args": [],
"icon": "terminal-ubuntu"
},
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell",
"args": ["-NoLogo"]
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
}
},
"terminal.integrated.defaultProfile.windows": "WSL",
"terminal.integrated.showExitAlert": false,
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"editor.wordWrap": "on",
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.lineHeight": 20,
"editor.semanticHighlighting.enabled": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.fontLigatures": true,
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.formatOnSave": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
// "**/node_modules": true
},
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": {
"njk": "html",
"javascript": "javascriptreact"
},
"vsicons.associations.files": [
{ "icon": "nunjucks", "extensions": ["njk"], "format": "svg" }
],
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.productIconTheme": "fluent-icons",
"workbench.editor.labelFormat": "short",
"workbench.tree.indent": 13,
"liveServer.settings.donotShowInfoMsg": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"typescript.suggest.paths": false,
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"typescript.tsserver.log": "off",
// "terminal.integrated.shell.osx": "/bin/zsh", // Old config
"breadcrumbs.enabled": true,
"workbench.colorTheme": "Dracula",
"editor.tabSize": 2,
"editor.suggestSelection": "first",
"material-icon-theme.activeIconPack": "nest",
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"domain": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"game": "lib",
"hud": "stack",
"fakes": "mock",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe",
"providers": "include",
"subscribers": "messages",
"useCases": "controller",
"kafka": "scripts",
"mappers": "meta",
"_shared": "shared",
"eslint-config": "tools",
"kube": "kubernetes"
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json",
"*.tsx": "typescriptreact"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"*.webpack.js": "webpack"
},
"splitHTMLAttributes.closingBracketOnNewLine": true,
"tabnine.experimentalAutoImports": true,
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"python.formatting.provider": "black",
"security.workspace.trust.untrustedFiles": "open"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment