settings.json 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. {
  2. // basics
  3. "window.zoomLevel": 0,
  4. "window.title": "${dirty} ${folderName} / ${activeEditorMedium}",
  5. "workbench.startupEditor": "none",
  6. "editor.fontFamily": "'JetBrains Mono', Inconsolata-g, Menlo, Monaco, 'Courier New', monospace",
  7. "editor.fontLigatures": true,
  8. "editor.fontSize": 12,
  9. "editor.tabSize": 2,
  10. "editor.renderWhitespace": "boundary",
  11. "editor.rulers": [
  12. 80,
  13. 100
  14. ],
  15. "terminal.external.osxExec": "/Applications/iTerm.app/Contents/MacOS/iTerm2",
  16. "editor.renderIndentGuides": true,
  17. "editor.find.seedSearchStringFromSelection": false,
  18. "search.smartCase": true,
  19. // "editor.smoothScrolling": true,
  20. "explorer.confirmDragAndDrop": false,
  21. "workbench.editor.highlightModifiedTabs": true,
  22. "editor.gotoLocation.multipleReferences": "goto",
  23. "editor.gotoLocation.multipleImplementations": "goto",
  24. "debug.openExplorerOnEnd": true,
  25. "files.trimTrailingWhitespace": true,
  26. "files.defaultLanguage": "markdown",
  27. // ui extras
  28. "editor.minimap.enabled": true,
  29. "editor.minimap.maxColumn": 40,
  30. "editor.scrollbar.verticalScrollbarSize": 5, // unsupported, but works:
  31. "workbench.activityBar.visible": true, // toggleable
  32. // "editor.glyphMargin": false,
  33. "explorer.confirmDelete": false,
  34. "editor.lineNumbers": "interval",
  35. "editor.suggestSelection": "first",
  36. "terminal.integrated.cursorBlinking": true,
  37. "workbench.statusBar.feedback.visible": false,
  38. "search.enableSearchEditorPreview": true,
  39. "keyboard.touchbar.ignored": [
  40. "workbench.action.debug.start",
  41. "workbench.action.debug.run"
  42. ],
  43. "workbench.editor.tabCloseButton": "off",
  44. "window.titleBarStyle": "custom",
  45. "workbench.sideBar.location": "right",
  46. "editor.semanticHighlighting.enabled": true,
  47. // theme
  48. "workbench.colorTheme": "Dark+ (contrast)", // Night Owl or Dark+ (contrast)
  49. "workbench.colorCustomizations": {
  50. "[Dark+ (contrast)]": {
  51. "activityBar.background": "#000000",
  52. "sideBar.background": "#050505",
  53. "sideBar.border": "#333",
  54. "editorGroup.emptyBackground": "#151515",
  55. "editorGroupHeader.tabsBackground": "#151515",
  56. "editorCodeLens.foreground": "#666",
  57. "editorRuler.foreground": "#151515",
  58. "editorWidget.background": "#151515",
  59. "editorWidget.border": "#666",
  60. "editor.lineHighlightBorder": "#151515",
  61. "titleBar.border": "#333333",
  62. "statusBar.background": "#334455",
  63. "editorIndentGuide.activeBackground": "#555555"
  64. },
  65. "[Night Owl Black]": {
  66. // "editor.background": "#090909",
  67. // "sideBar.background": "#131313",
  68. // "editorGutter.background": "#000000",
  69. // "activityBar.background": "#000000",
  70. // "sideBarSectionHeader.background": "#000000",
  71. "editorWhitespace.foreground": "#90909030"
  72. },
  73. "[Overnight Slumber Italics]": {
  74. "editorWhitespace.foreground": "#90909030"
  75. }
  76. },
  77. // editing
  78. "files.insertFinalNewline": true,
  79. "editor.multiCursorModifier": "ctrlCmd",
  80. "merge-conflict.autoNavigateNextConflict.enabled": true,
  81. "editor.snippetSuggestions": "bottom",
  82. "editor.wordBasedSuggestions": false,
  83. "emmet.triggerExpansionOnTab": true,
  84. "emmet.showSuggestionsAsSnippets": true,
  85. // navigation
  86. "vscodeWorkspaceSwitcher.paths": [
  87. "~/Documents/chillidonut/**/",
  88. "~/Documents/repos/**/"
  89. ],
  90. "bookmarks.navigateThroughAllFiles": true,
  91. // git
  92. "git.confirmSync": false,
  93. "git.countBadge": "tracked",
  94. "git.enableSmartCommit": true,
  95. "git.defaultCloneDirectory": "/Users/tom/Documents/repos",
  96. "diffEditor.ignoreTrimWhitespace": true,
  97. "scm.diffDecorationsGutterWidth": 2,
  98. "git.detectSubmodules": false,
  99. // js/ts
  100. "typescript.check.npmIsInstalled": false,
  101. "javascript.validate.enable": true,
  102. "typescript.suggest.completeFunctionCalls": true,
  103. "javascript.suggest.completeFunctionCalls": true,
  104. "javascript.updateImportsOnFileMove.enabled": "always",
  105. "typescript.updateImportsOnFileMove.enabled": "always",
  106. // extensions
  107. "extensions.ignoreRecommendations": true,
  108. "extensions.showRecommendationsOnlyOnDemand": true,
  109. // other
  110. "[jsonc]": {
  111. "editor.defaultFormatter": "esbenp.prettier-vscode"
  112. },
  113. "[typescript]": {
  114. "editor.defaultFormatter": "esbenp.prettier-vscode"
  115. },
  116. "[postgres]": {
  117. "editor.defaultFormatter": "adpyke.vscode-sql-formatter",
  118. },
  119. "bracket-pair-colorizer-2.highlightActiveScope": true,
  120. "editor.matchBrackets": "near",
  121. "emojisense.languages": {
  122. "git-commit": true,
  123. "markdown": true,
  124. "plaintext": {
  125. "emojiDecoratorsEnabled": false,
  126. "markupCompletionsEnabled": false
  127. },
  128. "todo": true
  129. },
  130. "errorLens.addAnnotationTextPrefixes": false,
  131. "errorLens.enabledDiagnosticLevels": [
  132. "error"
  133. ],
  134. "errorLens.followCursor": "closestProblem",
  135. "errorLens.followCursorMore": 3,
  136. "errorLens.fontSize": "0.8em",
  137. "gitTreeCompare.diffMode": "merge",
  138. "gitTreeCompare.iconsMinimal": true,
  139. "gitlens.blame.avatars": false,
  140. "gitlens.blame.ignoreWhitespace": true,
  141. "gitlens.codeLens.recentChange.command": "gitlens.diffWithPrevious",
  142. "gitlens.currentLine.enabled": false,
  143. "gitlens.currentLine.format": "${agoOrDate} • ${id} • ${message}",
  144. "gitlens.heatmap.toggleMode": "window",
  145. "gitlens.hovers.annotations.changes": false,
  146. "gitlens.hovers.annotations.over": "annotation",
  147. "gitlens.hovers.currentLine.details": false,
  148. "gitlens.hovers.currentLine.enabled": false,
  149. "gitlens.menus": {
  150. "editor": {
  151. "blame": true,
  152. "clipboard": true,
  153. "compare": false,
  154. "details": true,
  155. "history": true,
  156. "remote": true
  157. },
  158. "editorGroup": {
  159. "blame": true,
  160. "compare": false,
  161. "history": true,
  162. "remote": true
  163. },
  164. "editorTab": {
  165. "compare": false,
  166. "history": true,
  167. "remote": true
  168. },
  169. "explorer": {
  170. "compare": false,
  171. "history": true,
  172. "remote": false
  173. }
  174. },
  175. "gitlens.recentChanges.highlight.locations": [
  176. "line",
  177. "overview"
  178. ],
  179. "gitlens.blame.format": "${sha|20?} ${ago|12-}",
  180. "gitlens.codeLens.scopes": [
  181. "document",
  182. "containers",
  183. "blocks"
  184. ],
  185. "gitlens.codeLens.symbolScopes": [
  186. "Function"
  187. ],
  188. "gitlens.hovers.currentLine.over": "line",
  189. "gitlens.blame.highlight.locations": [
  190. "line",
  191. "overview"
  192. ],
  193. "gitlens.recentChanges.toggleMode": "window",
  194. "gitlens.settings.mode": "advanced",
  195. "gitlens.statusBar.alignment": "left",
  196. "gitlens.statusBar.format": "${ago}: \"${message}\"",
  197. "gitlens.statusBar.reduceFlicker": true,
  198. "gitlens.views.compare.avatars": false,
  199. "gitlens.views.compare.files.layout": "auto",
  200. "gitlens.views.compare.location": "gitlens",
  201. "gitlens.views.fileHistory.enabled": true,
  202. "gitlens.views.fileHistory.location": "gitlens",
  203. "gitlens.views.lineHistory.enabled": false,
  204. "gitlens.views.lineHistory.location": "gitlens",
  205. "gitlens.views.repositories.avatars": false,
  206. "gitlens.views.repositories.branches.layout": "list",
  207. "gitlens.views.repositories.location": "gitlens",
  208. "gitlens.views.search.avatars": false,
  209. "gitlens.views.search.files.layout": "auto",
  210. "gitlens.views.search.location": "gitlens",
  211. "npm.enableScriptExplorer": true,
  212. "prettier.requireConfig": true,
  213. "spellright.groupDictionaries": false,
  214. "spellright.languageContext": {
  215. "comments": [
  216. "en-GB"
  217. ],
  218. "strings": [
  219. "en-US"
  220. ]
  221. },
  222. "spellright.notificationClassByParser": {
  223. "code": "information"
  224. },
  225. "versionlens.showVersionLensesAtStartup": false,
  226. "vscodeWorkspaceSwitcher.showInActivityBar": false,
  227. "vscodeWorkspaceSwitcher.showInExplorer": true,
  228. "insertDateString.format": "YYYY-MM-DDThh:mm:ssZZZ",
  229. "glitch.token": "2f77a573-175f-4b72-9279-9d8f62588e7b",
  230. "[javascript]": {
  231. "editor.defaultFormatter": "esbenp.prettier-vscode"
  232. },
  233. "[typescriptreact]": {
  234. "editor.defaultFormatter": "esbenp.prettier-vscode"
  235. },
  236. "merge-conflict.diffViewPosition": "Below",
  237. "gitlab.showIssueLinkOnStatusBar": false,
  238. "editor.acceptSuggestionOnEnter": "off",
  239. "editor.find.autoFindInSelection": "multiline",
  240. "vscode-postgres.defaultDatabase": "mryum_dev",
  241. "editor.gotoLocation.multipleDefinitions": "gotoAndPeek",
  242. "breadcrumbs.enabled": false,
  243. "workbench.editor.showTabs": true,
  244. "tabnine.experimentalAutoImports": true,
  245. "[yaml]": {
  246. "editor.defaultFormatter": "esbenp.prettier-vscode"
  247. },
  248. "editor.minimap.scale": 2,
  249. "search.collapseResults": "auto",
  250. "workbench.editor.pinnedTabSizing": "shrink",
  251. "debug.javascript.autoAttachFilter": "onlyWithFlag",
  252. "terminal.integrated.cursorStyle": "line"
  253. }