Skip to content

Instantly share code, notes, and snippets.

@diogorochaa
Last active August 7, 2023 15:02
Show Gist options
  • Save diogorochaa/97c9146e9d63f984026a287412bafcd8 to your computer and use it in GitHub Desktop.
Save diogorochaa/97c9146e9d63f984026a287412bafcd8 to your computer and use it in GitHub Desktop.
Preferences VsCode
{
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 16,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [
80,
120
],
"extensions.ignoreRecommendations": true,
"typescript.tsserver.log": "off",
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
"*.tsx": "typescriptreact",
".env.*": "dotenv",
".prettierrc": "json"
},
"screencastMode.onlyKeyboardShortcuts": true,
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.lineHeight": 26,
"material-icon-theme.languages.associations": {
"dotenv": "tune"
},
"typescript.updateImportsOnFileMove.enabled": "never",
"material-icon-theme.files.associations": {
"tsconfig.json": "tune",
"*.webpack.js": "webpack",
"*.proto": "3d",
"ormconfig.json": "database"
},
"material-icon-theme.activeIconPack": "nest",
"editor.suggestSelection": "first",
"explorer.confirmDelete": false,
"gitlens.codeLens.recentChange.enabled": false,
"terminal.integrated.showExitAlert": false,
"[prisma]": {
"editor.formatOnSave": true
},
"typescript.suggest.autoImports": true,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"workbench.editor.labelFormat": "short",
"editor.fontLigatures": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"material-icon-theme.folders.associations": {
"adapters": "contract",
"grpc": "pipe",
"kube": "kubernetes",
"main": "lib",
"websockets": "pipe",
"implementations": "core",
"protos": "pipe",
"entities": "class",
"kafka": "pipe",
"use-cases": "functions",
"migrations": "tools",
"schemas": "class",
"useCases": "functions",
"eslint-config": "tools",
"typeorm": "database",
"_shared": "shared",
"mappers": "meta",
"fakes": "mock",
"modules": "components",
"subscribers": "messages",
"domain": "class",
"protocols": "contract",
"infra": "app",
"view-models": "views",
"presentation": "template",
"dtos": "typescript",
"http": "container",
"providers": "include",
"factories": "class",
"repositories": "mappings"
},
"editor.acceptSuggestionOnCommitCharacter": false,
"explorer.compactFolders": false,
"git.enableSmartCommit": true,
"editor.accessibilitySupport": "off",
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "Fira Code",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.addMissingImports": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"graphql"
],
"editor.semanticHighlighting.enabled": false,
"breadcrumbs.enabled": true,
"editor.fontFamily": "Fira Code",
"gitlens.codeLens.authors.enabled": false,
"editor.tabSize": 2,
"security.workspace.trust.untrustedFiles": "newWindow",
"files.exclude": {
"**\/CVS": true,
"**\/.DS_Store": true,
"**\/.hg": true,
"**\/.svn": true,
"**\/.git": true,
// "node_modules": true
},
"gitlens.codeLens.enabled": false,
"editor.minimap.enabled": false,
"update.mode": "start",
"terminal.integrated.gpuAcceleration": "off",
"terminal.integrated.defaultProfile.osx": "fish",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"workbench.editor.untitled.hint": "hidden",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"window.commandCenter": true,
"git.openRepositoryInParentFolders": "always",
"window.zoomLevel": 2,
"editor.inlineSuggest.enabled": true,
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.env.linux": {},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js, ${capture}.typegen.ts",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts, ${capture}.typegen.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml",
"*.mts": "${capture}.typegen.ts",
"*.cts": "${capture}.typegen.ts"
},
"[html]": {
"editor.suggest.insertMode": "replace",
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"notebook.formatOnSave.enabled": true,
"workbench.colorTheme": "Hyper Dracula",
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": true,
"scminput": false
},
"java.debug.settings.console": "internalConsole",
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
80
],
"editor.selectionHighlight": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"generate.template.type": "Clean Code",
"boot-java.rewrite.reconcile": true,
"git.autofetch": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment