settings.json 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. {
  2. "window.zoomLevel": 0,
  3. "editor.fontFamily": "Inconsolata-g, Menlo, Monaco, 'Courier New', monospace",
  4. "editor.fontSize": 12,
  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. "*.svg": "xml"
  34. },
  35. "[ruby]": {
  36. "editor.wordWrap": "on"
  37. },
  38. // "editor.glyphMargin": false,
  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.hovers.currentLine.over": "line",
  55. "gitlens.blame.highlight.locations": [
  56. "line",
  57. "overview"
  58. ],
  59. "vscodeWorkspaceSwitcher.paths": [
  60. "~/Documents/chillidonut/**/",
  61. "~/Documents/repos/**/"
  62. ],
  63. "workbench.colorTheme": "Night Owl", // or Dark+ (contrast)
  64. "workbench.colorCustomizations": {
  65. "[Dark+ (contrast)]": {
  66. "activityBar.background": "#000000",
  67. "sideBar.background": "#050505",
  68. "sideBar.border": "#333",
  69. "editorGroup.emptyBackground": "#151515",
  70. "editorGroupHeader.tabsBackground": "#151515",
  71. "editorCodeLens.foreground": "#666",
  72. "editorRuler.foreground": "#151515",
  73. "editorWidget.background": "#151515",
  74. "editorWidget.border": "#666",
  75. "editor.lineHighlightBorder": "#151515",
  76. "titleBar.border": "#333333",
  77. // "statusBar.background": "#334455",
  78. "editorIndentGuide.activeBackground": "#555555"
  79. },
  80. },
  81. "bookmarks.navigateThroughAllFiles": true,
  82. "debug.openExplorerOnEnd": true,
  83. "scm.diffDecorationsGutterWidth": 2,
  84. "workbench.statusBar.feedback.visible": false,
  85. "gitTreeCompare.iconsMinimal": true,
  86. "gitlens.codeLens.recentChange.command": "gitlens.diffWithPrevious",
  87. "gitlens.heatmap.toggleMode": "window",
  88. "gitlens.hovers.annotations.over": "annotation",
  89. "gitlens.recentChanges.highlight.locations": [
  90. "line",
  91. "overview"
  92. ],
  93. "gitlens.hovers.annotations.changes": false,
  94. "gitlens.hovers.currentLine.details": false,
  95. "gitlens.recentChanges.toggleMode": "window",
  96. "gitlens.statusBar.alignment": "left",
  97. "gitlens.statusBar.format": "${ago}: \"${message}\"",
  98. "editor.find.seedSearchStringFromSelection": false,
  99. "gitlens.statusBar.reduceFlicker": true,
  100. "git.enableSmartCommit": true,
  101. "git.defaultCloneDirectory": "/Users/tom/Documents/repos",
  102. "terminal.external.osxExec": "/Applications/iTerm.app/Contents/MacOS/iTerm2",
  103. "editor.matchBrackets": false,
  104. "extensions.ignoreRecommendations": true,
  105. "workbench.editor.showTabs": true,
  106. "versionlens.showVersionLensesAtStartup": false,
  107. "npm.enableScriptExplorer": true,
  108. "emojisense.languages": {
  109. "markdown": true,
  110. "plaintext": {
  111. "markupCompletionsEnabled": false,
  112. "emojiDecoratorsEnabled": false
  113. },
  114. "git-commit": true,
  115. "todo": true,
  116. },
  117. "gitlens.menus": {
  118. "editor": {
  119. "blame": true,
  120. "clipboard": true,
  121. "compare": false,
  122. "details": true,
  123. "history": true,
  124. "remote": true
  125. },
  126. "editorGroup": {
  127. "blame": true,
  128. "compare": false,
  129. "history": true,
  130. "remote": true
  131. },
  132. "editorTab": {
  133. "compare": false,
  134. "history": true,
  135. "remote": true
  136. },
  137. "explorer": {
  138. "compare": false,
  139. "history": true,
  140. "remote": false
  141. }
  142. },
  143. "gitlens.settings.mode": "advanced",
  144. "gitlens.currentLine.format": "${agoOrDate} • ${id} • ${message}",
  145. "gitlens.blame.avatars": false,
  146. "gitlens.currentLine.enabled": false,
  147. "gitlens.blame.ignoreWhitespace": true,
  148. "extensions.showRecommendationsOnlyOnDemand": true,
  149. "prettier.requireConfig": true,
  150. "javascript.updateImportsOnFileMove.enabled": "always",
  151. "search.smartCase": true,
  152. "search.location": "panel",
  153. "breadcrumbs.enabled": true,
  154. "explorer.confirmDragAndDrop": false,
  155. "macros": {
  156. "autoFixAll": [
  157. "tslint.fixAllProblems",
  158. "eslint.executeAutofix",
  159. ]
  160. },
  161. "typescript.updateImportsOnFileMove.enabled": "always",
  162. "workbench.statusBar.visible": true,
  163. "git.detectSubmodules": false,
  164. "workbench.editor.highlightModifiedTabs": true,
  165. "gitlens.views.repositories.branches.layout": "list",
  166. "gitlens.views.fileHistory.enabled": false,
  167. "gitlens.views.lineHistory.enabled": false,
  168. "gitlens.views.compare.files.layout": "auto",
  169. "gitlens.views.search.files.layout": "auto",
  170. "diffEditor.renderSideBySide": true,
  171. "yaml.schemas": {
  172. "none": "pipeline.yaml"
  173. },
  174. "editor.smoothScrolling": true,
  175. "typescript.suggest.completeFunctionCalls": true,
  176. "javascript.suggest.completeFunctionCalls": true,
  177. "terminal.integrated.copyOnSelection": true,
  178. "gitlens.views.compare.avatars": false,
  179. "gitlens.views.repositories.avatars": false,
  180. "gitlens.views.search.avatars": false,
  181. "editor.minimap.renderCharacters": false,
  182. "errorLens.addAnnotationTextPrefixes": false,
  183. "editor.suggestSelection": "first",
  184. "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  185. "bracket-pair-colorizer-2.highlightActiveScope": true,
  186. "spellright.groupDictionaries": false,
  187. // "spellright.documentTypes": [
  188. // "typescript",
  189. // "typescriptreact"
  190. // ],
  191. "spellright.notificationClassByParser": {
  192. "code": "information"
  193. },
  194. "spellright.languageContext": {
  195. "strings": [ "en-US" ],
  196. "comments": [ "en-GB" ]
  197. },
  198. "errorLens.enabledDiagnosticLevels": ["error"],
  199. "gitTreeCompare.diffMode": "full",
  200. "[typescriptreact]": {
  201. "editor.defaultFormatter": "esbenp.prettier-vscode"
  202. },
  203. "vscodeWorkspaceSwitcher.showInExplorer": true,
  204. "[javascriptreact]": {
  205. "editor.defaultFormatter": "esbenp.prettier-vscode"
  206. },
  207. "vscodeWorkspaceSwitcher.showInActivityBar": false,
  208. "terminal.explorerKind": "external",
  209. "[html]": {
  210. "editor.defaultFormatter": "vscode.html-language-features"
  211. },
  212. "gitlens.views.repositories.location": "gitlens",
  213. "gitlens.views.fileHistory.location": "gitlens",
  214. "gitlens.views.lineHistory.location": "gitlens",
  215. "gitlens.views.compare.location": "gitlens",
  216. "gitlens.views.search.location": "gitlens",
  217. "[typescript]": {
  218. "editor.defaultFormatter": "esbenp.prettier-vscode"
  219. },
  220. "[jsonc]": {
  221. "editor.defaultFormatter": "esbenp.prettier-vscode"
  222. },
  223. "vtools.autoHideSideBar": true
  224. "emmet.triggerExpansionOnTab": true,
  225. "merge-conflict.autoNavigateNextConflict.enabled": true
  226. }