Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.90 KB | None | 0 0
  1. {
  2. "sync.gist": "",
  3. "sync.autoDownload": false,
  4. "sync.autoUpload": false,
  5. "sync.forceDownload": false,
  6. "sync.askGistName": false,
  7. "editor.fontWeight": "600",
  8. "prettier.tabWidth": 2,
  9. "git.autofetch": true,
  10. "files.exclude": {
  11. "**/.DS_Store": true,
  12. "**/.git": true,
  13. "**/.hg": true,
  14. "**/.next": true,
  15. "**/.svn": true,
  16. "**/CVS": true,
  17. "**/node_modules": true
  18. },
  19. "emmet.syntaxProfiles": {
  20. "javascript": "jsx"
  21. },
  22. "editor.wordWrap": "wordWrapColumn",
  23. "gitlens.advanced.messages": {
  24. "suppressResultsExplorerNotice": true,
  25. "suppressShowKeyBindingsNotice": true,
  26. "suppressWelcomeNotice": true
  27. },
  28. "editor.quickSuggestions": {
  29. "other": true,
  30. "comments": false,
  31. "strings": true
  32. },
  33. "workbench.startupEditor": "newUntitledFile",
  34. "gitlens.keymap": "alternate",
  35. "gitlens.gitExplorer.view": "repository",
  36. "sync.removeExtensions": true,
  37. "sync.syncExtensions": true,
  38. "prettier.singleQuote": true,
  39. "gitlens.historyExplorer.enabled": true,
  40. "editor.tabSize": 2,
  41. "editor.minimap.enabled": false,
  42. "window.zoomLevel": 1,
  43. "window.clickThroughInactive": false,
  44. "eslint.enable": false,
  45. "htmltagwrap.tag": "div",
  46. "javascript.validate.enable": false,
  47. "editor.rulers": [100],
  48. "editor.cursorBlinking": "blink",
  49. "terminal.integrated.cursorBlinking": true,
  50. "eslint.alwaysShowStatus": false,
  51. "editor.formatOnSave": true,
  52. "prettier.trailingComma": "es5",
  53. "terminal.external.osxExec": "iTerm.app",
  54. "terminal.integrated.shell.osx": "fish",
  55. "terminal.integrated.rendererType": "dom",
  56. "terminal.integrated.fontSize": 14,
  57. "editor.renderIndentGuides": false,
  58. "breadcrumbs.enabled": true,
  59. "material-icon-theme.folders.color": "#ff7043",
  60. "sync.quietSync": false,
  61. "workbench.editor.showTabs": false,
  62. "prettier.printWidth": 100,
  63. "guides.enabled": false,
  64. "editor.quickSuggestionsDelay": 0,
  65. "gitlens.views.fileHistory.enabled": true,
  66. "gitlens.views.lineHistory.enabled": true,
  67. "workbench.iconTheme": "material-icon-theme",
  68. "material-icon-theme.showReloadMessage": false,
  69. "editor.cursorStyle": "block",
  70. "editor.wordWrapColumn": 100,
  71. "editor.cursorSmoothCaretAnimation": true,
  72. "workbench.fontAliasing": "antialiased",
  73. "workbench.editor.highlightModifiedTabs": true,
  74. "workbench.editor.tabSizing": "shrink",
  75. "extensions.ignoreRecommendations": false,
  76. "[html]": {
  77. "editor.defaultFormatter": "vscode.html-language-features"
  78. },
  79. "[javascript]": {
  80. "editor.defaultFormatter": "esbenp.prettier-vscode"
  81. },
  82. "peacock.favoriteColors": [
  83. {
  84. "name": "Angular Red",
  85. "value": "#b52e31"
  86. },
  87. {
  88. "name": "Auth0 Orange",
  89. "value": "#eb5424"
  90. },
  91. {
  92. "name": "Azure Blue",
  93. "value": "#007fff"
  94. },
  95. {
  96. "name": "C# Purple",
  97. "value": "#68217A"
  98. },
  99. {
  100. "name": "Gatsby Purple",
  101. "value": "#639"
  102. },
  103. {
  104. "name": "Go Cyan",
  105. "value": "#5dc9e2"
  106. },
  107. {
  108. "name": "Java Blue-Gray",
  109. "value": "#557c9b"
  110. },
  111. {
  112. "name": "JavaScript Yellow",
  113. "value": "#f9e64f"
  114. },
  115. {
  116. "name": "Mandalorian Blue",
  117. "value": "#1857a4"
  118. },
  119. {
  120. "name": "Node Green",
  121. "value": "#215732"
  122. },
  123. {
  124. "name": "React Blue",
  125. "value": "#00b3e6"
  126. },
  127. {
  128. "name": "Something Different",
  129. "value": "#832561"
  130. },
  131. {
  132. "name": "Vue Green",
  133. "value": "#42b883"
  134. }
  135. ],
  136. "debug.toolBarLocation": "floating",
  137. "editor.autoIndent": true,
  138. "editor.codeLens": false,
  139. "editor.fontFamily": "Dank Mono, Operator Mono, Fira Code",
  140. "editor.fontSize": 14,
  141. "editor.fontLigatures": true,
  142. "editor.letterSpacing": 0.5,
  143. "editor.lineHeight": 25,
  144. "search.showLineNumbers": true,
  145. "workbench.colorTheme": "Solarized Dark",
  146. "zenMode.centerLayout": false,
  147. "[jsonc]": {
  148. "editor.defaultFormatter": "esbenp.prettier-vscode"
  149. },
  150. "[json]": {
  151. "editor.defaultFormatter": "vscode.json-language-features"
  152. }
  153. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement