1
0

settings.json 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. {
  2. "window.zoomLevel": 0,
  3. "editor.fontFamily": "Inconsolata, Menlo, Monaco, 'Courier New', monospace",
  4. "editor.fontSize": 14,
  5. "editor.tabSize": 2,
  6. "editor.renderWhitespace": "boundary",
  7. "editor.rulers": [
  8. 80,
  9. 100
  10. ],
  11. "files.autoSave": "off",
  12. "editor.minimap.enabled": true,
  13. "editor.minimap.maxColumn": 40,
  14. // unsupported, but works:
  15. "editor.scrollbar.verticalScrollbarSize": 5,
  16. "editor.renderIndentGuides": true,
  17. "typescript.check.npmIsInstalled": false,
  18. "javascript.validate.enable": true,
  19. "git.countBadge": "tracked",
  20. "window.newWindowDimensions": "inherit",
  21. "workbench.editor.tabCloseButton": "off",
  22. "files.trimTrailingWhitespace": true,
  23. "window.titleBarStyle": "custom",
  24. "git.confirmSync": false,
  25. "workbench.sideBar.location": "right",
  26. "files.insertFinalNewline": true,
  27. "window.title": "${activeEditorMedium}${separator}${folderName}${separator}${rootName}${separator}${dirty}",
  28. "gitlens.advanced.menus": {
  29. "editorContext": {
  30. "blame": true,
  31. "copy": true,
  32. "details": true,
  33. "fileDiff": false,
  34. "history": true,
  35. "lineDiff": false,
  36. "remote": true
  37. },
  38. "editorTitle": {
  39. "blame": true,
  40. "fileDiff": false,
  41. "history": true,
  42. "remote": true,
  43. "status": true
  44. },
  45. "editorTitleContext": {
  46. "blame": true,
  47. "fileDiff": false,
  48. "history": true,
  49. "remote": true
  50. },
  51. "explorerContext": {
  52. "fileDiff": false,
  53. "history": true,
  54. "remote": true
  55. }
  56. },
  57. "editor.multiCursorModifier": "ctrlCmd",
  58. "workbench.startupEditor": "none",
  59. "workbench.activityBar.visible": true,
  60. "files.associations": {
  61. "*.js": "javascriptreact"
  62. },
  63. "emmet.syntaxProfiles": {
  64. "javascript": "jsx"
  65. },
  66. "[ruby]": {
  67. "editor.wordWrap": "on"
  68. },
  69. // "editor.glyphMargin": false,
  70. "ruby.rubocop.executePath": "/Users/tom/.rbenv/shims/",
  71. "editor.snippetSuggestions": "top",
  72. "editor.formatOnPaste": false,
  73. "search.useIgnoreFiles": true,
  74. "explorer.confirmDelete": false,
  75. "jest.autoEnable": false,
  76. "jest.runAllTestsFirst": false,
  77. "problems.decorations.enabled": true,
  78. "explorer.decorations.colors": false,
  79. "editor.lineNumbers": "interval",
  80. "flow.pathToFlow": "/Users/tom/.nvm/versions/node/v8.9.4/bin/flow",
  81. "gitlens.blame.format": "${sha|20?} ${ago|12-}",
  82. "gitlens.codeLens.scopes": [
  83. "document",
  84. "containers",
  85. "blocks"
  86. ],
  87. "gitlens.codeLens.symbolScopes": [
  88. "Function"
  89. ],
  90. "diffEditor.ignoreTrimWhitespace": true,
  91. "gitlens.keymap": "none",
  92. "gitlens.gitExplorer.view": "history",
  93. "gitlens.hovers.currentLine.over": "line",
  94. "gitlens.blame.highlight.locations": [
  95. "line",
  96. "overview"
  97. ],
  98. "vscodeWorkspaceSwitcher.paths": [
  99. "~/Documents/activepipe",
  100. "~/Documents/repos"
  101. ],
  102. "workbench.colorTheme": "Monokai", // or Dark+ (contrast)
  103. "workbench.colorCustomizations": {
  104. "[Dark+ (contrast)]": {
  105. "activityBar.background": "#000000",
  106. "sideBar.background": "#050505",
  107. "sideBar.border": "#333",
  108. "editorGroup.background": "#151515",
  109. "editorGroupHeader.tabsBackground": "#151515",
  110. "editorCodeLens.foreground": "#666",
  111. "editorRuler.foreground": "#151515",
  112. "editorWidget.background": "#151515",
  113. "editorWidget.border": "#666",
  114. "editor.lineHighlightBorder": "#151515",
  115. "titleBar.border": "#333333",
  116. // "statusBar.background": "#334455",
  117. "editorIndentGuide.activeBackground": "#555555"
  118. },
  119. },
  120. "bookmarks.navigateThroughAllFiles": true,
  121. "debug.openExplorerOnEnd": true,
  122. "scm.diffDecorationsGutterWidth": 2,
  123. "workbench.statusBar.feedback.visible": false,
  124. "gitlens.gitExplorer.files.layout": "list",
  125. "gitlens.gitExplorer.branches.layout": "list",
  126. "gitlens.advanced.messages": {
  127. "suppressCommitHasNoPreviousCommitWarning": false,
  128. "suppressCommitNotFoundWarning": false,
  129. "suppressFileNotUnderSourceControlWarning": false,
  130. "suppressGitVersionWarning": false,
  131. "suppressLineUncommittedWarning": false,
  132. "suppressNoRepositoryWarning": false,
  133. "suppressResultsExplorerNotice": true,
  134. "suppressShowKeyBindingsNotice": true
  135. },
  136. "githubNotificationsBell.icon": "pulse", // pulse, mark-github
  137. "githubNotificationsBell.colorParticipating": "#61bfd3",
  138. // "githubNotificationsBell.colorParticipating": "#F44400",
  139. "gitTreeCompare.iconsMinimal": true,
  140. "gitlens.explorers.avatars": false,
  141. "gitlens.gitExplorer.enabled": false,
  142. "gitlens.historyExplorer.enabled": false,
  143. "gitlens.codeLens.recentChange.command": "gitlens.diffWithPrevious",
  144. "gitlens.currentLine.enabled": false,
  145. "gitlens.blame.toggleMode": "window",
  146. "gitlens.blame.avatars": false,
  147. "gitlens.heatmap.toggleMode": "window",
  148. "gitlens.hovers.annotations.over": "annotation",
  149. "gitlens.recentChanges.highlight.locations": [
  150. "line",
  151. "overview"
  152. ],
  153. "gitlens.hovers.annotations.changes": false,
  154. "gitlens.hovers.currentLine.details": false,
  155. "gitlens.recentChanges.toggleMode": "window",
  156. "gitlens.statusBar.alignment": "left",
  157. "gitlens.statusBar.format": "${ago}: \"${message}\"",
  158. "editor.find.seedSearchStringFromSelection": false,
  159. "gitlens.resultsExplorer.files.layout": "auto",
  160. "gitlens.statusBar.reduceFlicker": true,
  161. "git.enableSmartCommit": true,
  162. "git.defaultCloneDirectory": "/Users/tom/Documents/repos",
  163. "terminal.external.osxExec": "/Applications/iTerm.app/Contents/MacOS/iTerm2",
  164. "bracketPairColorizer.highlightActiveScope": true,
  165. "bracketPairColorizer.scopeLineCSS": [
  166. "borderStyle : dotted",
  167. "borderWidth : 1px",
  168. "borderColor : {color}; opacity: 0.2"
  169. ],
  170. "editor.matchBrackets": false,
  171. "extensions.ignoreRecommendations": true,
  172. "workbench.editor.showTabs": true,
  173. "versionlens.showVersionLensesAtStartup": false,
  174. "npm.enableScriptExplorer": true,
  175. "emojisense.languages": {
  176. "markdown": true,
  177. "plaintext": {
  178. "markupCompletionsEnabled": false,
  179. "emojiDecoratorsEnabled": false
  180. },
  181. "git-commit": true,
  182. "todo": true,
  183. },
  184. }