Skip to content

Instantly share code, notes, and snippets.

@tayhsn
Last active December 28, 2022 20:16
Show Gist options
  • Save tayhsn/31481f54aebeb96f8ec981639b3aba18 to your computer and use it in GitHub Desktop.
Save tayhsn/31481f54aebeb96f8ec981639b3aba18 to your computer and use it in GitHub Desktop.
Update on 12-28-22
{
"git.autofetch": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.fontSize": 15,
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.profiles.osx": {
"zsh": {
"path": "/bin/zsh",
"args": ["-l", "-i"]
}
},
"workbench.editor.labelFormat": "short",
"workbench.colorTheme": "GitHub Dark Default",
"workbench.iconTheme": "material-icon-theme",
"editor.renderLineHighlight": "gutter",
"editor.parameterHints.enabled": false,
"editor.semanticHighlighting.enabled": true,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.rulers": [80, 120],
"editor.linkedEditing": true,
"editor.suggestSelection": "first",
"editor.wordWrap": "on",
"editor.fontFamily": "Fira Code",
"editor.fontSize": 16,
"editor.lineHeight": 26,
"editor.fontLigatures": true,
"editor.quickSuggestionsDelay": 5,
"window.zoomLevel": 1,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[prisma]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Prisma.prisma"
},
"prettier.tabWidth": 2,
"prettier.semi": false,
"prettier.singleQuote": true,
"tabnine.experimentalAutoImports": true,
"material-icon-theme.activeIconPack": "nest",
"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",
"eslint-config": "tools",
"ts-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.stickyScroll.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment