1
0

settings.json 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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": "${rootName}${separator}${activeEditorMedium} ${dirty}",
  28. "editor.multiCursorModifier": "ctrlCmd",
  29. "workbench.startupEditor": "none",
  30. "workbench.activityBar.visible": true,
  31. "files.associations": {
  32. "*.js": "javascriptreact"
  33. },
  34. "[ruby]": {
  35. "editor.wordWrap": "on"
  36. },
  37. // "editor.glyphMargin": false,
  38. "editor.snippetSuggestions": "top",
  39. "search.useIgnoreFiles": true,
  40. "explorer.confirmDelete": false,
  41. "problems.decorations.enabled": true,
  42. "explorer.decorations.colors": true,
  43. "editor.lineNumbers": "interval",
  44. "gitlens.blame.format": "${sha|20?} ${ago|12-}",
  45. "gitlens.codeLens.scopes": [
  46. "document",
  47. "containers",
  48. "blocks"
  49. ],
  50. "gitlens.codeLens.symbolScopes": [
  51. "Function"
  52. ],
  53. "diffEditor.ignoreTrimWhitespace": true,
  54. "gitlens.gitExplorer.view": "repository",
  55. "gitlens.hovers.currentLine.over": "line",
  56. "gitlens.blame.highlight.locations": [
  57. "line",
  58. "overview"
  59. ],
  60. "vscodeWorkspaceSwitcher.paths": [
  61. "~/Documents/activepipe",
  62. "~/Documents/repos"
  63. ],
  64. "workbench.colorTheme": "Night Owl", // or Dark+ (contrast)
  65. "workbench.colorCustomizations": {
  66. "[Dark+ (contrast)]": {
  67. "activityBar.background": "#000000",
  68. "sideBar.background": "#050505",
  69. "sideBar.border": "#333",
  70. "editorGroup.emptyBackground": "#151515",
  71. "editorGroupHeader.tabsBackground": "#151515",
  72. "editorCodeLens.foreground": "#666",
  73. "editorRuler.foreground": "#151515",
  74. "editorWidget.background": "#151515",
  75. "editorWidget.border": "#666",
  76. "editor.lineHighlightBorder": "#151515",
  77. "titleBar.border": "#333333",
  78. // "statusBar.background": "#334455",
  79. "editorIndentGuide.activeBackground": "#555555"
  80. },
  81. },
  82. "bookmarks.navigateThroughAllFiles": true,
  83. "debug.openExplorerOnEnd": true,
  84. "scm.diffDecorationsGutterWidth": 2,
  85. "workbench.statusBar.feedback.visible": false,
  86. "gitlens.gitExplorer.files.layout": "auto",
  87. "gitlens.gitExplorer.branches.layout": "list",
  88. "gitlens.advanced.messages": {
  89. "suppressCommitHasNoPreviousCommitWarning": false,
  90. "suppressCommitNotFoundWarning": false,
  91. "suppressFileNotUnderSourceControlWarning": false,
  92. "suppressGitVersionWarning": false,
  93. "suppressLineUncommittedWarning": false,
  94. "suppressNoRepositoryWarning": false,
  95. "suppressResultsExplorerNotice": true,
  96. "suppressShowKeyBindingsNotice": true
  97. },
  98. "githubNotificationsBell.icon": "pulse", // pulse, mark-github
  99. "githubNotificationsBell.colorParticipating": "#61bfd3",
  100. // "githubNotificationsBell.colorParticipating": "#F44400",
  101. "gitTreeCompare.iconsMinimal": true,
  102. "gitlens.codeLens.recentChange.command": "gitlens.diffWithPrevious",
  103. "gitlens.heatmap.toggleMode": "window",
  104. "gitlens.hovers.annotations.over": "annotation",
  105. "gitlens.recentChanges.highlight.locations": [
  106. "line",
  107. "overview"
  108. ],
  109. "gitlens.hovers.annotations.changes": false,
  110. "gitlens.hovers.currentLine.details": false,
  111. "gitlens.recentChanges.toggleMode": "window",
  112. "gitlens.statusBar.alignment": "left",
  113. "gitlens.statusBar.format": "${ago}: \"${message}\"",
  114. "editor.find.seedSearchStringFromSelection": false,
  115. "gitlens.resultsExplorer.files.layout": "auto",
  116. "gitlens.statusBar.reduceFlicker": true,
  117. "git.enableSmartCommit": true,
  118. "git.defaultCloneDirectory": "/Users/tom/Documents/repos",
  119. "terminal.external.osxExec": "/Applications/iTerm.app/Contents/MacOS/iTerm2",
  120. "bracketPairColorizer.highlightActiveScope": true,
  121. "bracketPairColorizer.scopeLineCSS": [
  122. "borderStyle : dotted",
  123. "borderWidth : 1px",
  124. "borderColor : {color}; opacity: 0.2"
  125. ],
  126. "editor.matchBrackets": false,
  127. "extensions.ignoreRecommendations": true,
  128. "workbench.editor.showTabs": true,
  129. "versionlens.showVersionLensesAtStartup": false,
  130. "npm.enableScriptExplorer": true,
  131. "emojisense.languages": {
  132. "markdown": true,
  133. "plaintext": {
  134. "markupCompletionsEnabled": false,
  135. "emojiDecoratorsEnabled": false
  136. },
  137. "git-commit": true,
  138. "todo": true,
  139. },
  140. "gitlens.menus": {
  141. "editor": {
  142. "blame": true,
  143. "clipboard": true,
  144. "compare": false,
  145. "details": true,
  146. "history": true,
  147. "remote": true
  148. },
  149. "editorGroup": {
  150. "blame": true,
  151. "compare": false,
  152. "history": true,
  153. "remote": true
  154. },
  155. "editorTab": {
  156. "compare": false,
  157. "history": true,
  158. "remote": true
  159. },
  160. "explorer": {
  161. "compare": false,
  162. "history": true,
  163. "remote": false
  164. }
  165. },
  166. "gitlens.settings.mode": "advanced",
  167. "gitlens.explorers.avatars": false,
  168. "gitlens.historyExplorer.enabled": false,
  169. "gitlens.currentLine.format": "${agoOrDate} • ${id} • ${message}",
  170. "gitlens.blame.avatars": false,
  171. "gitlens.currentLine.enabled": false,
  172. "gitlens.blame.ignoreWhitespace": true,
  173. "bracketPairColorizer.consecutivePairColors": [
  174. "()",
  175. "[]",
  176. "{}", [
  177. "Gold",
  178. "Orchid",
  179. "LightSkyBlue"
  180. ],
  181. "Red"
  182. ],
  183. "extensions.showRecommendationsOnlyOnDemand": true,
  184. "prettier.requireConfig": true,
  185. "window.vibrancy": true,
  186. "javascript.updateImportsOnFileMove.enabled": "prompt",
  187. "search.smartCase": true,
  188. "search.location": "panel"
  189. }