wrichaard

settings.json

Sep 15th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.58 KB | None | 0 0
  1. {
  2.   "terminal.integrated.fontSize": 14,
  3.   "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
  4.  
  5.  
  6.   "workbench.iconTheme": "material-icon-theme",
  7.   "workbench.startupEditor": "newUntitledFile",
  8.   "workbench.colorTheme": "Omni",
  9.  
  10.  
  11.   "editor.tabSize": 2,
  12.   "editor.fontSize": 19,
  13.   "editor.lineHeight": 26,
  14.   "editor.fontFamily": "Fira Code",
  15.   "editor.fontLigatures": true,
  16.  
  17.   "files.exclude": {
  18.     "**/.git": true,
  19.     "**/.svn": true,
  20.     "**/.hg": true,
  21.     "**/CVS": true,
  22.     "**/.DS_Store": true,
  23.     "node_modules": true
  24.   },
  25.  
  26.   "explorer.compactFolders": false,
  27.   "editor.renderLineHighlight": "gutter",
  28.   "workbench.editor.labelFormat": "short",
  29.   "extensions.ignoreRecommendations": true,
  30.  
  31.   "javascript.updateImportsOnFileMove.enabled": "always",
  32.   "typescript.updateImportsOnFileMove.enabled": "never",
  33.  
  34.   "breadcrumbs.enabled": true,
  35.   "editor.parameterHints.enabled": false,
  36.   "explorer.confirmDragAndDrop": false,
  37.   "explorer.confirmDelete": false,
  38.  
  39.   "editor.rulers": [80, 120],
  40.  
  41.   "editor.codeActionsOnSave": {
  42.     "source.fixAll.eslint": true
  43.   },
  44.  
  45.   "files.associations": {
  46.     ".sequelizerc": "javascript",
  47.     ".stylelintrc": "json",
  48.     ".prettierrc": "json"
  49.   },
  50.  
  51.   "window.zoomLevel": 0,
  52.  
  53.   "emmet.syntaxProfiles": { "javascript": "jsx" },
  54.   "emmet.includeLanguages": { "javascript": "javascriptreact" },
  55.  
  56.  
  57.   "gitlens.codeLens.recentChange.enabled": false,
  58.   "gitlens.codeLens.authors.enabled": false,
  59.   "gitlens.codeLens.enabled": false,
  60.  
  61.   "git.enableSmartCommit": true,
  62.   "terminal.integrated.shell.osx": "/bin/zsh",
  63.   "liveshare.featureSet": "insiders",
  64.  
  65.   "typescript.tsserver.log": "verbose",
  66.   "javascript.suggest.autoImports": true,
  67.   "typescript.suggest.autoImports": true,
  68.   "liveServer.settings.donotShowInfoMsg": true,
  69.   // "material-icon-theme.activeIconPack": "nest",
  70.   "screencastMode.onlyKeyboardShortcuts": true,
  71.  
  72.   "material-icon-theme.folders.associations": {
  73.     "infra": "app",
  74.     "entities": "class",
  75.     "schemas": "class",
  76.     "typeorm": "database",
  77.     "repositories": "mappings",
  78.     "http": "container",
  79.     "migrations": "tools",
  80.     "modules": "components",
  81.     "implementations": "core",
  82.     "dtos": "typescript",
  83.     "fakes": "mock",
  84.     "websockets": "pipe",
  85.     "protos": "pipe",
  86.     "grpc": "pipe"
  87.   },
  88.  
  89.   "material-icon-theme.files.associations": {
  90.     "ormconfig.json": "database",
  91.     "tsconfig.json": "tune",
  92.     "*.proto": "3d"
  93.   },
  94.  
  95.   "workbench.colorTheme": "Omni",
  96.   "files.autoSave": "afterDelay",
  97.   "tabnine.experimentalAutoImports": true,
  98. }
Add Comment
Please, Sign In to add comment