1
0

settings.json 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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. "editor.snippetSuggestions": "top",
  40. "search.useIgnoreFiles": true,
  41. "explorer.confirmDelete": false,
  42. "problems.decorations.enabled": true,
  43. "explorer.decorations.colors": true,
  44. "editor.lineNumbers": "interval",
  45. "gitlens.blame.format": "${sha|20?} ${ago|12-}",
  46. "gitlens.codeLens.scopes": [
  47. "document",
  48. "containers",
  49. "blocks"
  50. ],
  51. "gitlens.codeLens.symbolScopes": [
  52. "Function"
  53. ],
  54. "diffEditor.ignoreTrimWhitespace": true,
  55. "gitlens.hovers.currentLine.over": "line",
  56. "gitlens.blame.highlight.locations": [
  57. "line",
  58. "overview"
  59. ],
  60. "vscodeWorkspaceSwitcher.paths": [
  61. "~/Documents/chillidonut/**/",
  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. "gitTreeCompare.iconsMinimal": true,
  87. "gitlens.codeLens.recentChange.command": "gitlens.diffWithPrevious",
  88. "gitlens.heatmap.toggleMode": "window",
  89. "gitlens.hovers.annotations.over": "annotation",
  90. "gitlens.recentChanges.highlight.locations": [
  91. "line",
  92. "overview"
  93. ],
  94. "gitlens.hovers.annotations.changes": false,
  95. "gitlens.hovers.currentLine.details": false,
  96. "gitlens.recentChanges.toggleMode": "window",
  97. "gitlens.statusBar.alignment": "left",
  98. "gitlens.statusBar.format": "${ago}: \"${message}\"",
  99. "editor.find.seedSearchStringFromSelection": false,
  100. "gitlens.statusBar.reduceFlicker": true,
  101. "git.enableSmartCommit": true,
  102. "git.defaultCloneDirectory": "/Users/tom/Documents/repos",
  103. "terminal.external.osxExec": "/Applications/iTerm.app/Contents/MacOS/iTerm2",
  104. "editor.matchBrackets": false,
  105. "extensions.ignoreRecommendations": true,
  106. "workbench.editor.showTabs": true,
  107. "versionlens.showVersionLensesAtStartup": false,
  108. "npm.enableScriptExplorer": true,
  109. "emojisense.languages": {
  110. "markdown": true,
  111. "plaintext": {
  112. "markupCompletionsEnabled": false,
  113. "emojiDecoratorsEnabled": false
  114. },
  115. "git-commit": true,
  116. "todo": true,
  117. },
  118. "gitlens.menus": {
  119. "editor": {
  120. "blame": true,
  121. "clipboard": true,
  122. "compare": false,
  123. "details": true,
  124. "history": true,
  125. "remote": true
  126. },
  127. "editorGroup": {
  128. "blame": true,
  129. "compare": false,
  130. "history": true,
  131. "remote": true
  132. },
  133. "editorTab": {
  134. "compare": false,
  135. "history": true,
  136. "remote": true
  137. },
  138. "explorer": {
  139. "compare": false,
  140. "history": true,
  141. "remote": false
  142. }
  143. },
  144. "gitlens.settings.mode": "advanced",
  145. "gitlens.currentLine.format": "${agoOrDate} • ${id} • ${message}",
  146. "gitlens.blame.avatars": false,
  147. "gitlens.currentLine.enabled": false,
  148. "gitlens.blame.ignoreWhitespace": true,
  149. "extensions.showRecommendationsOnlyOnDemand": true,
  150. "prettier.requireConfig": true,
  151. "javascript.updateImportsOnFileMove.enabled": "always",
  152. "search.smartCase": true,
  153. "search.location": "panel",
  154. "breadcrumbs.enabled": true,
  155. "explorer.confirmDragAndDrop": false,
  156. "macros": {
  157. "autoFixAll": [
  158. "tslint.fixAllProblems",
  159. "eslint.executeAutofix",
  160. ]
  161. },
  162. "typescript.updateImportsOnFileMove.enabled": "always",
  163. "workbench.statusBar.visible": true,
  164. "git.detectSubmodules": false,
  165. "workbench.editor.highlightModifiedTabs": true,
  166. "gitlens.views.repositories.branches.layout": "list",
  167. "gitlens.views.fileHistory.enabled": false,
  168. "gitlens.views.lineHistory.enabled": false,
  169. "gitlens.views.compare.files.layout": "auto",
  170. "gitlens.views.search.files.layout": "auto",
  171. "diffEditor.renderSideBySide": true,
  172. "yaml.schemas": {
  173. "none": "pipeline.yaml"
  174. },
  175. "editor.smoothScrolling": true,
  176. "typescript.suggest.completeFunctionCalls": true,
  177. "javascript.suggest.completeFunctionCalls": true,
  178. "terminal.integrated.copyOnSelection": true,
  179. "gitlens.views.compare.avatars": false,
  180. "gitlens.views.repositories.avatars": false,
  181. "gitlens.views.search.avatars": false,
  182. "editor.minimap.renderCharacters": false,
  183. "errorLens.addAnnotationTextPrefixes": false,
  184. "editor.suggestSelection": "first",
  185. "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  186. "bracket-pair-colorizer-2.highlightActiveScope": true,
  187. "spellright.groupDictionaries": false,
  188. // "spellright.documentTypes": [
  189. // "typescript",
  190. // "typescriptreact"
  191. // ],
  192. "spellright.notificationClassByParser": {
  193. "code": "information"
  194. },
  195. "spellright.languageContext": {
  196. "strings": [ "en-US" ],
  197. "comments": [ "en-GB" ]
  198. },
  199. "errorLens.enabledDiagnosticLevels": ["error"],
  200. "gitTreeCompare.diffMode": "full",
  201. "[typescriptreact]": {
  202. "editor.defaultFormatter": "esbenp.prettier-vscode"
  203. },
  204. "vscodeWorkspaceSwitcher.showInExplorer": true,
  205. "[javascriptreact]": {
  206. "editor.defaultFormatter": "esbenp.prettier-vscode"
  207. },
  208. "vscodeWorkspaceSwitcher.showInActivityBar": false,
  209. "terminal.explorerKind": "external",
  210. "[html]": {
  211. "editor.defaultFormatter": "vscode.html-language-features"
  212. },
  213. "gitlens.views.repositories.location": "gitlens",
  214. "gitlens.views.fileHistory.location": "gitlens",
  215. "gitlens.views.lineHistory.location": "gitlens",
  216. "gitlens.views.compare.location": "gitlens",
  217. "gitlens.views.search.location": "gitlens",
  218. "[typescript]": {
  219. "editor.defaultFormatter": "esbenp.prettier-vscode"
  220. },
  221. "[jsonc]": {
  222. "editor.defaultFormatter": "esbenp.prettier-vscode"
  223. },
  224. "vtools.autoHideSideBar": true
  225. }