Advertisement
sheefoo

VS Code Config

Jul 23rd, 2019 (edited)
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.25 KB | None | 0 0
  1. {
  2.     "window.zoomLevel": -1,
  3.     "terminal.integrated.cursorStyle": "line",
  4.     "gitlens.advanced.messages": {
  5.         "suppressLineUncommittedWarning": true
  6.     },
  7.     "mssql.connections": [
  8.         {
  9.             "connectionString": "Data Source=localhost;Initial Catalog=DEV_WEB_MainData_NetCore;Integrated Security=True",
  10.             "profileName": "SmartQA",
  11.             "password": ""
  12.         }
  13.     ],
  14.     "diffEditor.renderSideBySide": true,
  15.     "editor.renderWhitespace": "none",
  16.     "breadcrumbs.enabled": false,
  17.     "editor.minimap.enabled": true,
  18.     "workbench.statusBar.visible": true,
  19.     "window.menuBarVisibility": "default",
  20.     "editor.cursorStyle": "line-thin",
  21.     "workbench.tree.indent": 24,
  22.     "debug.inlineValues": true,
  23.     "vetur.format.options.tabSize": 4,
  24.     "vetur.format.defaultFormatter.html": "none",
  25.     "vetur.format.defaultFormatter.js": "vscode-typescript",
  26.     "vetur.format.scriptInitialIndent": true,
  27.     "vetur.format.styleInitialIndent": true,
  28.     "prettier.tabWidth": 4,
  29.     "prettier.trailingComma": "es5",
  30.     "search.exclude": {
  31.         "**/wwwroot/dist": true
  32.     },
  33.     "editor.suggestSelection": "first",
  34.     "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement