settings.json 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018
  1. {
  2. "vscode-neovim.neovimExecutablePaths.darwin": "/usr/local/bin/nvim",
  3. "vscode-neovim.neovimExecutablePaths.linux": "/usr/bin/nvim",
  4. "vscode-neovim.neovimInitVimPaths.darwin": "$HOME/.config/nvim/init.vim",
  5. "vscode-neovim.neovimInitVimPaths.linux": "$HOME/.config/nvim/init.vim",
  6. "whichkey.sortOrder": "alphabetically",
  7. "whichkey.bindings": [
  8. {
  9. "key": ";",
  10. "name": "commands",
  11. "type": "command",
  12. "command": "workbench.action.showCommands"
  13. },
  14. {
  15. "key": "/",
  16. "name": "comment",
  17. "type": "command",
  18. "command": "vscode-neovim.send",
  19. "args": "<C-/>"
  20. },
  21. {
  22. "key": "?",
  23. "name": "View All References",
  24. "type": "command",
  25. "command": "references-view.find",
  26. "when": "editorHasReferenceProvider"
  27. },
  28. {
  29. "key": "b",
  30. "name": "Buffers/Editors...",
  31. "type": "bindings",
  32. "bindings": [
  33. {
  34. "key": "b",
  35. "name": "Show all buffers/editors",
  36. "type": "command",
  37. "command": "workbench.action.showAllEditors"
  38. },
  39. {
  40. "key": "d",
  41. "name": "Close active editor",
  42. "type": "command",
  43. "command": "workbench.action.closeActiveEditor"
  44. },
  45. {
  46. "key": "h",
  47. "name": "Move editor into left group",
  48. "type": "command",
  49. "command": "workbench.action.moveEditorToLeftGroup"
  50. },
  51. {
  52. "key": "j",
  53. "name": "Move editor into below group",
  54. "type": "command",
  55. "command": "workbench.action.moveEditorToBelowGroup"
  56. },
  57. {
  58. "key": "k",
  59. "name": "Move editor into above group",
  60. "type": "command",
  61. "command": "workbench.action.moveEditorToAboveGroup"
  62. },
  63. {
  64. "key": "l",
  65. "name": "Move editor into right group",
  66. "type": "command",
  67. "command": "workbench.action.moveEditorToRightGroup"
  68. },
  69. {
  70. "key": "m",
  71. "name": "Close other editors",
  72. "type": "command",
  73. "command": "workbench.action.closeOtherEditors"
  74. },
  75. {
  76. "key": "n",
  77. "name": "Next editor",
  78. "type": "command",
  79. "command": "workbench.action.nextEditor"
  80. },
  81. {
  82. "key": "p",
  83. "name": "Previous editor",
  84. "type": "command",
  85. "command": "workbench.action.previousEditor"
  86. },
  87. {
  88. "key": "N",
  89. "name": "New untitled editor",
  90. "type": "command",
  91. "command": "workbench.action.files.newUntitledFile"
  92. },
  93. {
  94. "key": "u",
  95. "name": "Reopen closed editor",
  96. "type": "command",
  97. "command": "workbench.action.reopenClosedEditor"
  98. },
  99. {
  100. "key": "y",
  101. "name": "Copy buffer to clipboard",
  102. "type": "commands",
  103. "commands": [
  104. "editor.action.selectAll",
  105. "editor.action.clipboardCopyAction",
  106. "cancelSelection"
  107. ]
  108. }
  109. ]
  110. },
  111. {
  112. "key": "d",
  113. "name": "Debug...",
  114. "type": "bindings",
  115. "bindings": [
  116. {
  117. "key": "d",
  118. "name": "Start debug",
  119. "type": "command",
  120. "command": "workbench.action.debug.start"
  121. },
  122. {
  123. "key": "S",
  124. "name": "Stop debug",
  125. "type": "command",
  126. "command": "workbench.action.debug.stop"
  127. },
  128. {
  129. "key": "c",
  130. "name": "Continue debug",
  131. "type": "command",
  132. "command": "workbench.action.debug.continue"
  133. },
  134. {
  135. "key": "p",
  136. "name": "Pause debug",
  137. "type": "command",
  138. "command": "workbench.action.debug.pause"
  139. },
  140. {
  141. "key": "r",
  142. "name": "Run without debugging",
  143. "type": "command",
  144. "command": "workbench.action.debug.run"
  145. },
  146. {
  147. "key": "R",
  148. "name": "Restart debug",
  149. "type": "command",
  150. "command": "workbench.action.debug.restart"
  151. },
  152. {
  153. "key": "i",
  154. "name": "Step into",
  155. "type": "command",
  156. "command": "workbench.action.debug.stepInto"
  157. },
  158. {
  159. "key": "s",
  160. "name": "Step over",
  161. "type": "command",
  162. "command": "workbench.action.debug.stepOver"
  163. },
  164. {
  165. "key": "o",
  166. "name": "Step out",
  167. "type": "command",
  168. "command": "workbench.action.debug.stepOut"
  169. },
  170. {
  171. "key": "b",
  172. "name": "Toggle breakpoint",
  173. "type": "command",
  174. "command": "editor.debug.action.toggleBreakpoint"
  175. },
  176. {
  177. "key": "B",
  178. "name": "Toggle inline breakpoint",
  179. "type": "command",
  180. "command": "editor.debug.action.toggleInlineBreakpoint"
  181. },
  182. {
  183. "key": "j",
  184. "name": "Jump to cursor",
  185. "type": "command",
  186. "command": "debug.jumpToCursor"
  187. },
  188. {
  189. "key": "v",
  190. "name": "REPL",
  191. "type": "command",
  192. "command": "workbench.debug.action.toggleRepl"
  193. },
  194. {
  195. "key": "w",
  196. "name": "Focus on watch window",
  197. "type": "command",
  198. "command": "workbench.debug.action.focusWatchView"
  199. },
  200. {
  201. "key": "W",
  202. "name": "Add to watch",
  203. "type": "command",
  204. "command": "editor.debug.action.selectionToWatch"
  205. }
  206. ]
  207. },
  208. {
  209. "key": "e",
  210. "name": "Toggle Explorer",
  211. "type": "command",
  212. "command": "workbench.action.toggleSidebarVisibility"
  213. },
  214. {
  215. "key": "f",
  216. "name": "Find & Replace...",
  217. "type": "bindings",
  218. "bindings": [
  219. {
  220. "key": "f",
  221. "name": "File",
  222. "type": "command",
  223. "command": "editor.action.startFindReplaceAction"
  224. },
  225. {
  226. "key": "s",
  227. "name": "Symbol",
  228. "type": "command",
  229. "command": "editor.action.rename",
  230. "when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
  231. },
  232. {
  233. "key": "p",
  234. "name": "Project",
  235. "type": "command",
  236. "command": "workbench.action.replaceInFiles"
  237. }
  238. ]
  239. },
  240. {
  241. "key": "g",
  242. "name": "Git...",
  243. "type": "bindings",
  244. "bindings": [
  245. {
  246. "key": "/",
  247. "name": "Search Commits",
  248. "command": "gitlens.showCommitSearch",
  249. "type": "command",
  250. "when": "gitlens:enabled && config.gitlens.keymap == 'alternate'"
  251. },
  252. {
  253. "key": "a",
  254. "name": "Stage",
  255. "type": "command",
  256. "command": "git.stage"
  257. },
  258. {
  259. "key": "b",
  260. "name": "Checkout",
  261. "type": "command",
  262. "command": "git.checkout"
  263. },
  264. {
  265. "key": "B",
  266. "name": "Browse",
  267. "type": "command",
  268. "command": "gitlens.openFileInRemote"
  269. },
  270. {
  271. "key": "c",
  272. "name": "Commit",
  273. "type": "command",
  274. "command": "git.commit"
  275. },
  276. {
  277. "key": "C",
  278. "name": "Cherry Pick",
  279. "type": "command",
  280. "command": "gitlens.views.cherryPick"
  281. },
  282. {
  283. "key": "d",
  284. "name": "Delete Branch",
  285. "type": "command",
  286. "command": "git.deleteBranch"
  287. },
  288. {
  289. "key": "g",
  290. "name": "Graph",
  291. "type": "command",
  292. "command": "git-graph.view"
  293. },
  294. {
  295. "key": "h",
  296. "name": "Heatmap",
  297. "type": "command",
  298. "command": "gitlens.toggleFileHeatmap"
  299. },
  300. {
  301. "key": "f",
  302. "name": "Fetch",
  303. "type": "command",
  304. "command": "git.fetch"
  305. },
  306. {
  307. "key": "F",
  308. "name": "Pull From",
  309. "type": "command",
  310. "command": "git.pullFrom"
  311. },
  312. {
  313. "key": "i",
  314. "name": "Init",
  315. "type": "command",
  316. "command": "git.init"
  317. },
  318. {
  319. "key": "l",
  320. "name": "Toggle Line Blame",
  321. "type": "command",
  322. "command": "gitlens.toggleLineBlame",
  323. "when": "editorTextFocus && gitlens:canToggleCodeLens && gitlens:enabled && config.gitlens.keymap == 'alternate'"
  324. },
  325. {
  326. "key": "L",
  327. "name": "Toggle GitLens",
  328. "type": "command",
  329. "command": "gitlens.toggleCodeLens",
  330. "when": "editorTextFocus && gitlens:canToggleCodeLens && gitlens:enabled && config.gitlens.keymap == 'alternate'"
  331. },
  332. {
  333. "key": "m",
  334. "name": "Merge",
  335. "type": "command",
  336. "command": "git.merge"
  337. },
  338. {
  339. "key": "p",
  340. "name": "Push",
  341. "type": "command",
  342. "command": "git.push"
  343. },
  344. {
  345. "key": "P",
  346. "name": "Push",
  347. "type": "command",
  348. "command": "git.pull"
  349. },
  350. {
  351. "key": "s",
  352. "name": "Stash",
  353. "type": "command",
  354. "command": "workbench.view.scm"
  355. },
  356. {
  357. "key": "S",
  358. "name": "Status",
  359. "type": "command",
  360. "command": "gitlens.showQuickRepoStatus",
  361. "when": "gitlens:enabled && config.gitlens.keymap == 'alternate'"
  362. },
  363. {
  364. "key": "t",
  365. "name": "Create Tag",
  366. "type": "command",
  367. "command": "git.createTag"
  368. },
  369. {
  370. "key": "T",
  371. "name": "Delete Tag",
  372. "type": "command",
  373. "command": "git.deleteTag"
  374. },
  375. {
  376. "key": "U",
  377. "name": "Unstage",
  378. "type": "command",
  379. "command": "git.unstage"
  380. }
  381. ]
  382. },
  383. {
  384. "key": "h",
  385. "name": "Split Horizontal",
  386. "type": "command",
  387. "command": "workbench.action.splitEditorDown"
  388. },
  389. {
  390. "key": "i",
  391. "name": "Insert...",
  392. "type": "bindings",
  393. "bindings": [
  394. {
  395. "key": "j",
  396. "name": "Insert line below",
  397. "type": "command",
  398. "command": "editor.action.insertLineAfter"
  399. },
  400. {
  401. "key": "k",
  402. "name": "Insert line above",
  403. "type": "command",
  404. "command": "editor.action.insertLineBefore"
  405. },
  406. {
  407. "key": "s",
  408. "name": "Insert snippet",
  409. "type": "command",
  410. "command": "editor.action.insertSnippet"
  411. }
  412. ]
  413. },
  414. {
  415. "key": "l",
  416. "name": "LSP...",
  417. "type": "bindings",
  418. "bindings": [
  419. {
  420. "key": ";",
  421. "name": "Refactor",
  422. "type": "command",
  423. "command": "editor.action.refactor",
  424. "when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
  425. },
  426. {
  427. "key": "a",
  428. "name": "Auto Fix",
  429. "type": "command",
  430. "command": "editor.action.autoFix",
  431. "when": "editorTextFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)quickfix\\b/"
  432. },
  433. {
  434. "key": "d",
  435. "name": "Definition",
  436. "type": "command",
  437. "command": "editor.action.revealDefinition",
  438. "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
  439. },
  440. {
  441. "key": "D",
  442. "name": "Declaration",
  443. "type": "command",
  444. "command": "editor.action.revealDeclaration"
  445. },
  446. {
  447. "key": "e",
  448. "name": "Errors",
  449. "type": "command",
  450. "command": "workbench.actions.view.problems"
  451. },
  452. {
  453. "key": "f",
  454. "name": "Format",
  455. "type": "command",
  456. "command": "editor.action.formatDocument",
  457. "when": "editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor"
  458. },
  459. {
  460. "key": "i",
  461. "name": "Implementation",
  462. "type": "command",
  463. "command": "editor.action.goToImplementation",
  464. "when": "editorHasImplementationProvider && editorTextFocus && !isInEmbeddedEditor"
  465. },
  466. {
  467. "key": "l",
  468. "name": "Code Lens",
  469. "type": "command",
  470. "command": "codelens.showLensesInCurrentLine"
  471. },
  472. {
  473. "key": "n",
  474. "name": "Next Problem",
  475. "type": "command",
  476. "command": "editor.action.marker.next",
  477. "when": "editorFocus"
  478. },
  479. {
  480. "key": "N",
  481. "name": "Next Problem (Proj)",
  482. "type": "command",
  483. "command": "editor.action.marker.nextInFiles",
  484. "when": "editorFocus"
  485. },
  486. {
  487. "key": "o",
  488. "name": "Outline",
  489. "type": "command",
  490. "command": "outline.focus"
  491. },
  492. {
  493. "key": "p",
  494. "name": "Prev Problem",
  495. "type": "command",
  496. "command": "editor.action.marker.prevInFiles",
  497. "when": "editorFocus"
  498. },
  499. {
  500. "key": "P",
  501. "name": "Prev Problem (Proj)",
  502. "type": "command",
  503. "command": "editor.action.marker.prev",
  504. "when": "editorFocus"
  505. },
  506. {
  507. "key": "q",
  508. "name": "Quick Fix",
  509. "type": "command",
  510. "command": "editor.action.quickFix",
  511. "when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
  512. },
  513. {
  514. "key": "r",
  515. "name": "References",
  516. "type": "command",
  517. "command": "editor.action.goToReferences",
  518. "when": "editorHasReferenceProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor"
  519. },
  520. {
  521. "key": "R",
  522. "name": "Rename",
  523. "type": "command",
  524. "command": "editor.action.rename",
  525. "when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
  526. },
  527. {
  528. "key": "v",
  529. "name": "View All References",
  530. "type": "command",
  531. "command": "references-view.find",
  532. "when": "editorHasReferenceProvider"
  533. },
  534. {
  535. "key": "s",
  536. "name": "Go to Symbol (Editor)",
  537. "type": "command",
  538. "command": "workbench.action.gotoSymbol"
  539. },
  540. {
  541. "key": "S",
  542. "name": "Go to Symbol (Workspace)",
  543. "type": "command",
  544. "command": "workbench.action.showAllSymbols"
  545. }
  546. ]
  547. },
  548. {
  549. "key": "m",
  550. "name": "Minimap",
  551. "type": "command",
  552. "command": "editor.action.toggleMinimap"
  553. },
  554. {
  555. "key": "n",
  556. "name": "No Highlight",
  557. "type": "command",
  558. "command": "vscode-neovim.send",
  559. "args": ":noh<CR>"
  560. },
  561. {
  562. "key": "p",
  563. "name": "Peek...",
  564. "type": "bindings",
  565. "bindings": [
  566. {
  567. "key": "d",
  568. "name": "Definition",
  569. "type": "command",
  570. "command": "editor.action.peekDefinition",
  571. "when": "editorHasDefinitionProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor"
  572. },
  573. {
  574. "key": "D",
  575. "name": "Declaration",
  576. "type": "command",
  577. "command": "editor.action.peekDeclaration"
  578. },
  579. {
  580. "key": "i",
  581. "name": "Implementation",
  582. "type": "command",
  583. "command": "editor.action.peekImplementation",
  584. "when": "editorHasImplementationProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor"
  585. },
  586. {
  587. "key": "p",
  588. "name": "Toggle Focus",
  589. "type": "command",
  590. "command": "togglePeekWidgetFocus",
  591. "when": "inReferenceSearchEditor || referenceSearchVisible"
  592. },
  593. {
  594. "key": "r",
  595. "name": "References",
  596. "type": "command",
  597. "command": "editor.action.referenceSearch.trigger"
  598. },
  599. {
  600. "key": "t",
  601. "name": "Type Definition",
  602. "type": "command",
  603. "command": "editor.action.peekTypeDefinition"
  604. }
  605. ]
  606. },
  607. {
  608. "key": "s",
  609. "name": "Search...",
  610. "type": "bindings",
  611. "bindings": [
  612. {
  613. "key": "f",
  614. "name": "Files",
  615. "type": "command",
  616. "command": "workbench.action.quickOpen"
  617. },
  618. {
  619. "key": "t",
  620. "name": "Text",
  621. "type": "command",
  622. "command": "workbench.action.findInFiles"
  623. }
  624. ]
  625. },
  626. {
  627. "key": "S",
  628. "name": "Show...",
  629. "type": "bindings",
  630. "bindings": [
  631. {
  632. "key": "e",
  633. "name": "Show explorer",
  634. "type": "command",
  635. "command": "workbench.view.explorer"
  636. },
  637. {
  638. "key": "s",
  639. "name": "Show search",
  640. "type": "command",
  641. "command": "workbench.view.search"
  642. },
  643. {
  644. "key": "g",
  645. "name": "Show source control",
  646. "type": "command",
  647. "command": "workbench.view.scm"
  648. },
  649. {
  650. "key": "t",
  651. "name": "Show test",
  652. "type": "command",
  653. "command": "workbench.view.extension.test"
  654. },
  655. {
  656. "key": "r",
  657. "name": "Show remote explorer",
  658. "type": "command",
  659. "command": "workbench.view.remote"
  660. },
  661. {
  662. "key": "x",
  663. "name": "Show extensions",
  664. "type": "command",
  665. "command": "workbench.view.extensions"
  666. },
  667. {
  668. "key": "p",
  669. "name": "Show problem",
  670. "type": "command",
  671. "command": "workbench.actions.view.problems"
  672. },
  673. {
  674. "key": "o",
  675. "name": "Show output",
  676. "type": "command",
  677. "command": "workbench.action.output.toggleOutput"
  678. },
  679. {
  680. "key": "d",
  681. "name": "Show debug console",
  682. "type": "command",
  683. "command": "workbench.debug.action.toggleRepl"
  684. }
  685. ]
  686. },
  687. {
  688. "key": "t",
  689. "name": "Terminal...",
  690. "type": "bindings",
  691. "bindings": [
  692. {
  693. "key": "t",
  694. "name": "Toggle Terminal",
  695. "type": "command",
  696. "command": "workbench.action.togglePanel"
  697. },
  698. {
  699. "key": "T",
  700. "name": "Focus Terminal",
  701. "type": "command",
  702. "command": "workbench.action.terminal.toggleTerminal",
  703. "when": "!terminalFocus"
  704. }
  705. ]
  706. },
  707. {
  708. "key": "U",
  709. "name": "UI toggles...",
  710. "type": "bindings",
  711. "bindings": [
  712. {
  713. "key": "a",
  714. "name": "Toggle tool/activity bar visibility",
  715. "type": "command",
  716. "command": "workbench.action.toggleActivityBarVisibility"
  717. },
  718. {
  719. "key": "b",
  720. "name": "Toggle side bar visibility",
  721. "type": "command",
  722. "command": "workbench.action.toggleSidebarVisibility"
  723. },
  724. {
  725. "key": "j",
  726. "name": "Toggle panel visibility",
  727. "type": "command",
  728. "command": "workbench.action.togglePanel"
  729. },
  730. {
  731. "key": "F",
  732. "name": "Toggle full screen",
  733. "type": "command",
  734. "command": "workbench.action.toggleFullScreen"
  735. },
  736. {
  737. "key": "s",
  738. "name": "Select theme",
  739. "type": "command",
  740. "command": "workbench.action.selectTheme"
  741. },
  742. {
  743. "key": "m",
  744. "name": "Toggle maximized panel",
  745. "type": "command",
  746. "command": "workbench.action.toggleMaximizedPanel"
  747. },
  748. {
  749. "key": "T",
  750. "name": "Toggle tab visibility",
  751. "type": "command",
  752. "command": "workbench.action.toggleTabsVisibility"
  753. }
  754. ]
  755. },
  756. {
  757. "key": "v",
  758. "name": "Split Vertical",
  759. "type": "command",
  760. "command": "workbench.action.splitEditor"
  761. },
  762. {
  763. "key": "w",
  764. "name": "Window...",
  765. "type": "bindings",
  766. "bindings": [
  767. {
  768. "key": "W",
  769. "name": "Focus previous editor group",
  770. "type": "command",
  771. "command": "workbench.action.focusPreviousGroup"
  772. },
  773. {
  774. "key": "h",
  775. "name": "Move editor group left",
  776. "type": "command",
  777. "command": "workbench.action.moveActiveEditorGroupLeft"
  778. },
  779. {
  780. "key": "j",
  781. "name": "Move editor group down",
  782. "type": "command",
  783. "command": "workbench.action.moveActiveEditorGroupDown"
  784. },
  785. {
  786. "key": "k",
  787. "name": "Move editor group up",
  788. "type": "command",
  789. "command": "workbench.action.moveActiveEditorGroupUp"
  790. },
  791. {
  792. "key": "l",
  793. "name": "Move editor group right",
  794. "type": "command",
  795. "command": "workbench.action.moveActiveEditorGroupRight"
  796. },
  797. {
  798. "key": "t",
  799. "name": "Toggle editor group sizes",
  800. "type": "command",
  801. "command": "workbench.action.toggleEditorWidths"
  802. },
  803. {
  804. "key": "m",
  805. "name": "Maximize editor group",
  806. "type": "command",
  807. "command": "workbench.action.minimizeOtherEditors"
  808. },
  809. {
  810. "key": "M",
  811. "name": "Maximize editor group and hide side bar",
  812. "type": "command",
  813. "command": "workbench.action.maximizeEditor"
  814. },
  815. {
  816. "key": "=",
  817. "name": "Reset editor group sizes",
  818. "type": "command",
  819. "command": "workbench.action.evenEditorWidths"
  820. },
  821. {
  822. "key": "z",
  823. "name": "Combine all editors",
  824. "type": "command",
  825. "command": "workbench.action.joinAllGroups"
  826. },
  827. {
  828. "key": "d",
  829. "name": "Close editor group",
  830. "type": "command",
  831. "command": "workbench.action.closeEditorsInGroup"
  832. },
  833. {
  834. "key": "x",
  835. "name": "Close all editor groups",
  836. "type": "command",
  837. "command": "workbench.action.closeAllGroups"
  838. }
  839. ]
  840. },
  841. {
  842. "key": "x",
  843. "name": "Extensions",
  844. "type": "command",
  845. "command": "workbench.view.extensions"
  846. },
  847. {
  848. "key": "y",
  849. "name": "Sync...",
  850. "type": "bindings",
  851. "bindings": [
  852. {
  853. "key": "d",
  854. "name": "Download Settings",
  855. "type": "command",
  856. "command": "extension.downloadSettings"
  857. },
  858. {
  859. "key": "u",
  860. "name": "Upload Settings",
  861. "type": "command",
  862. "command": "extension.updateSettings"
  863. }
  864. ]
  865. },
  866. {
  867. "key": "z",
  868. "name": "Toggle zen mode",
  869. "type": "command",
  870. "command": "workbench.action.toggleZenMode"
  871. }
  872. ],
  873. "workbench.editor.showTabs": true,
  874. "sync.gist": "939951904a077b97f8001bc35f6b5948",
  875. "gitlens.hovers.currentLine.over": "line",
  876. "editor.suggestSelection": "first",
  877. "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  878. "python.pythonPath": "/Users/chris/.miniconda/bin/python",
  879. "java.semanticHighlighting.enabled": true,
  880. "java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -javaagent:\"/Users/chris/.vscode-oss/extensions/gabrielbb.vscode-lombok-1.0.1/server/lombok.jar\"",
  881. "workbench.list.automaticKeyboardNavigation": false,
  882. "oneDarkPro.editorTheme": "onedarkPro",
  883. "python.languageServer": "Microsoft",
  884. "editor.scrollbar.horizontal": "hidden",
  885. "editor.scrollbar.vertical": "hidden",
  886. "kite.showWelcomeNotificationOnStartup": false,
  887. "python.terminal.activateEnvironment": false,
  888. "editor.cursorBlinking": "solid",
  889. "editor.fontFamily": "Hack, Menlo, Monaco, 'Courier New', monospace",
  890. "files.exclude": {
  891. "**/.classpath": true,
  892. "**/.project": true,
  893. "**/.settings": true,
  894. "**/.factorypath": true
  895. },
  896. "terminal.external.osxExec": "iTerm.app",
  897. "editor.minimap.enabled": false,
  898. "workbench.activityBar.visible": false,
  899. "leetcode.workspaceFolder": "/Users/chris/Repos/leetcode",
  900. "leetcode.defaultLanguage": "javascript",
  901. "leetcode.hint.configWebviewMarkdown": false,
  902. "leetcode.hint.commentDescription": false,
  903. "window.zoomLevel": 3,
  904. "window.menuBarVisibility": "toggle",
  905. "python.dataScience.alwaysTrustNotebooks": true,
  906. "python.condaPath": "$HOME/.miniconda/bin/conda",
  907. "python.formatting.provider": "black",
  908. "python.insidersChannel": "daily",
  909. "terminal.integrated.shell.linux": "/bin/zsh",
  910. "terminal.external.linuxExec": "/usr/bin/alacritty",
  911. "editor.tokenColorCustomizations": {
  912. "[One Dark Pro]": {
  913. "textMateRules": [
  914. {
  915. "scope": [
  916. "support.class.component.open.jsx",
  917. "support.class.component.close.jsx",
  918. "entity.name.function.js"
  919. ],
  920. "settings": {
  921. "foreground": "#61afef"
  922. }
  923. },
  924. {
  925. "scope": [
  926. "variable.other.constant.object.js",
  927. "punctuation.section.embedded.begin.jsx",
  928. "punctuation.section.embedded.end.jsx"
  929. ],
  930. "settings": {
  931. "foreground": "#abb2bf"
  932. }
  933. },
  934. {
  935. "scope": ["punctuation.definition.tag.jsx"],
  936. "settings": {
  937. "foreground": "#5c6370"
  938. }
  939. },
  940. {
  941. "scope": [
  942. "variable.other.readwrite.js",
  943. "variable.other.property.js",
  944. "variable.parameter",
  945. "variable.other.object.js"
  946. ],
  947. "settings": {
  948. "foreground": "#56b6c2"
  949. }
  950. },
  951. {
  952. "scope": ["entity.other.attribute-name.jsx"],
  953. "settings": {
  954. "foreground": "#e5c07b"
  955. }
  956. },
  957. {
  958. "scope": [
  959. "keyword.operator.assignment.js",
  960. "keyword.operator.assignment.jsx",
  961. "string.unquoted.js",
  962. "keyword.operator.typeof.js",
  963. "meta.embedded.expression.js",
  964. "constant.other.object.key.js",
  965. "keyword.operator.logical.js"
  966. ],
  967. "settings": {
  968. "foreground": "#c678dd"
  969. }
  970. },
  971. {
  972. "scope": ["variable.other.constant.object.js"],
  973. "settings": {
  974. "foreground": "#e06c75"
  975. }
  976. }
  977. ]
  978. }
  979. },
  980. "workbench.colorCustomizations": {
  981. "[Default Dark+]": {
  982. "statusBar.background": "#2E2E2E",
  983. "statusBar.foreground": "#8C8C8C",
  984. "statusBarItem.remoteBackground": "#2E2E2E",
  985. "statusBarItem.remoteForeground": "#8C8C8C",
  986. "activityBar.background": "#2E2E2E",
  987. "tab.inactiveBackground": "#2E2E2E"
  988. },
  989. "[One Dark Pro]": {
  990. "editor.background": "#1e2127",
  991. "terminal.foreground": "#abb2bf",
  992. "terminal.ansiBlack": "#1e2127",
  993. "terminal.ansiBlue": "#61afef",
  994. "terminal.ansiCyan": "#56b6c2",
  995. "terminal.ansiGreen": "#98C379",
  996. "terminal.ansiMagenta": "#c678dd",
  997. "terminal.ansiRed": "#e06c75",
  998. "terminal.ansiWhite": "#abb2bf",
  999. "terminal.ansiYellow": "#d19a66",
  1000. "terminal.ansiBrightBlack": "#5c6370",
  1001. "terminal.ansiBrightBlue": "#61afef",
  1002. "terminal.ansiBrightCyan": "#56b6c2",
  1003. "terminal.ansiBrightGreen": "#98c379",
  1004. "terminal.ansiBrightMagenta": "#c678dd",
  1005. "terminal.ansiBrightRed": "#e06c75",
  1006. "terminal.ansiBrightWhite": "#ffffff",
  1007. "terminal.ansiBrightYellow": "#d19a66"
  1008. }
  1009. },
  1010. "gitlens.advanced.telemetry.enabled": false,
  1011. "gitlens.currentLine.enabled": false,
  1012. "[javascript]": {
  1013. "editor.defaultFormatter": "esbenp.prettier-vscode"
  1014. }
  1015. }