Guest User

Untitled

a guest
Jul 15th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.49 KB | None | 0 0
  1. {
  2. "editor.snippetSuggestions": "top",
  3. "editor.wordWrap": "on",
  4. "editor.formatOnPaste": true,
  5. "editor.formatOnSave": true,
  6. "[html]": {
  7. "editor.formatOnSave": true,
  8. "editor.quickSuggestions": {
  9. "other": true,
  10. "comments": false,
  11. "strings": true
  12. }
  13. },
  14. "files.defaultLanguage": "markdown",
  15. "editor.insertSpaces": false,
  16. "editor.detectIndentation": true,
  17. "editor.multiCursorModifier": "ctrlCmd",
  18. "editor.cursorStyle": "line",
  19. "editor.cursorWidth": 3,
  20. "editor.cursorBlinking": "solid",
  21. "editor.find.globalFindClipboard": true,
  22. "editor.fontFamily": "Fira code, Operator Mono, Inconsolata, Monofur, Menlo",
  23. // "editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace",
  24. "editor.fontSize": 14,
  25. "editor.fontLigatures": true,
  26. "editor.fontWeight": "400",
  27. "editor.lineHeight": 22,
  28. "editor.formatOnType": true,
  29. "editor.letterSpacing": 0.5,
  30. "editor.tabSize": 2,
  31. "editor.renderWhitespace": "none",
  32. "files.autoSave": "onFocusChange",
  33. "files.autoSaveDelay": 1000,
  34. "files.trimTrailingWhitespace": true,
  35. "prettier.printWidth": 100,
  36. "prettier.singleQuote": true,
  37. "prettier.tabWidth": 2,
  38. "prettier.eslintIntegration": true,
  39. "workbench.colorTheme": "JSFiddle-like-syntax-vscode",
  40. "editor.selectionHighlight": true,
  41. "terminal.integrated.copyOnSelection": true,
  42. "window.title": "${activeEditorMedium}${separator}${rootName}",
  43. "[typescript]": {
  44. "editor.formatOnSave": true,
  45. "editor.formatOnPaste": true
  46. },
  47. "[markdown]": {
  48. "editor.formatOnSave": true,
  49. "editor.renderWhitespace": "all",
  50. "editor.wordWrap": "on",
  51. "editor.quickSuggestions": false
  52. },
  53. "files.exclude": {
  54. "**/.git": true,
  55. "**/.DS_Store": true,
  56. },
  57. "search.exclude": {
  58. "node_modules/": true,
  59. "bower_components/": true,
  60. "e2e/": true,
  61. "dist": true
  62. },
  63. "workbench.activityBar.visible": true,
  64. "workbench.colorCustomizations": {
  65. "editor.selectionBackground": "#b4afaf",
  66. "editor.selectionHighlightBackground": "#d9ebaa",
  67. "statusBar.background": "#33101a",
  68. "statusBar.noFolderBackground": "#0A0A0D",
  69. "statusBar.debuggingBackground": "#511f1f"
  70. },
  71. "editor.minimap.enabled": false,
  72. "extensions.ignoreRecommendations": true,
  73. "diffEditor.ignoreTrimWhitespace": true,
  74. "workbench.editor.showTabs": true,
  75. "workbench.sideBar.location": "left",
  76. "extensions.showRecommendationsOnlyOnDemand": true,
  77. "window.zoomLevel": 0,
  78. "workbench.startupEditor": "newUntitledFile",
  79. "vsicons.projectDetection.autoReload": true,
  80. "workbench.iconTheme": "seti",
  81. "vsicons.dontShowNewVersionMessage": true,
  82. "editor.acceptSuggestionOnEnter": "off",
  83. "editor.find.autoFindInSelection": true,
  84. "window.closeWhenEmpty": true,
  85. "files.encoding": "utf8",
  86. "editor.showFoldingControls": "always",
  87. "editor.find.seedSearchStringFromSelection": true,
  88. "window.openFilesInNewWindow": "off",
  89. "editor.scrollBeyondLastLine": true,
  90. "editor.tabCompletion": false,
  91. "gitlens.advanced.messages": {
  92. "suppressShowKeyBindingsNotice": true
  93. },
  94. "gitlens.historyExplorer.enabled": true,
  95. "gitlens.mode.active": "zen",
  96. "gitlens.gitExplorer.location": "explorer",
  97. "gitlens.historyExplorer.location": "scm",
  98. "gitlens.resultsExplorer.location": "explorer",
  99. "typescript.preferences.quoteStyle": "single",
  100. "typescript.preferences.importModuleSpecifier": "relative",
  101. "typescript.updateImportsOnFileMove.enabled": "always",
  102. "typescript.showUnused": true,
  103. "files.hotExit": "onExit",
  104. "debug.toolBarLocation": "floating",
  105. "workbench.editor.openSideBySideDirection": down,
  106. "cSpell.userWords": [
  107. "Keshav",
  108. "formdata",
  109. "postdata",
  110. "progressbar",
  111. "readonly",
  112. "toastr"
  113. ]
  114. }
Add Comment
Please, Sign In to add comment