settings.json 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  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": "b",
  23. "name": "Buffers/Editors...",
  24. "type": "bindings",
  25. "bindings": [
  26. {
  27. "key": "b",
  28. "name": "Show all buffers/editors",
  29. "type": "command",
  30. "command": "workbench.action.showAllEditors"
  31. },
  32. {
  33. "key": "d",
  34. "name": "Close active editor",
  35. "type": "command",
  36. "command": "workbench.action.closeActiveEditor"
  37. },
  38. {
  39. "key": "h",
  40. "name": "Move editor into left group",
  41. "type": "command",
  42. "command": "workbench.action.moveEditorToLeftGroup"
  43. },
  44. {
  45. "key": "j",
  46. "name": "Move editor into below group",
  47. "type": "command",
  48. "command": "workbench.action.moveEditorToBelowGroup"
  49. },
  50. {
  51. "key": "k",
  52. "name": "Move editor into above group",
  53. "type": "command",
  54. "command": "workbench.action.moveEditorToAboveGroup"
  55. },
  56. {
  57. "key": "l",
  58. "name": "Move editor into right group",
  59. "type": "command",
  60. "command": "workbench.action.moveEditorToRightGroup"
  61. },
  62. {
  63. "key": "m",
  64. "name": "Close other editors",
  65. "type": "command",
  66. "command": "workbench.action.closeOtherEditors"
  67. },
  68. {
  69. "key": "n",
  70. "name": "Next editor",
  71. "type": "command",
  72. "command": "workbench.action.nextEditor"
  73. },
  74. {
  75. "key": "p",
  76. "name": "Previous editor",
  77. "type": "command",
  78. "command": "workbench.action.previousEditor"
  79. },
  80. {
  81. "key": "N",
  82. "name": "New untitled editor",
  83. "type": "command",
  84. "command": "workbench.action.files.newUntitledFile"
  85. },
  86. {
  87. "key": "u",
  88. "name": "Reopen closed editor",
  89. "type": "command",
  90. "command": "workbench.action.reopenClosedEditor"
  91. },
  92. {
  93. "key": "y",
  94. "name": "Copy buffer to clipboard",
  95. "type": "commands",
  96. "commands": [
  97. "editor.action.selectAll",
  98. "editor.action.clipboardCopyAction",
  99. "cancelSelection"
  100. ]
  101. }
  102. ]
  103. },
  104. {
  105. "key": "d",
  106. "name": "Debug...",
  107. "type": "bindings",
  108. "bindings": [
  109. {
  110. "key": "d",
  111. "name": "Start debug",
  112. "type": "command",
  113. "command": "workbench.action.debug.start"
  114. },
  115. {
  116. "key": "S",
  117. "name": "Stop debug",
  118. "type": "command",
  119. "command": "workbench.action.debug.stop"
  120. },
  121. {
  122. "key": "c",
  123. "name": "Continue debug",
  124. "type": "command",
  125. "command": "workbench.action.debug.continue"
  126. },
  127. {
  128. "key": "p",
  129. "name": "Pause debug",
  130. "type": "command",
  131. "command": "workbench.action.debug.pause"
  132. },
  133. {
  134. "key": "r",
  135. "name": "Run without debugging",
  136. "type": "command",
  137. "command": "workbench.action.debug.run"
  138. },
  139. {
  140. "key": "R",
  141. "name": "Restart debug",
  142. "type": "command",
  143. "command": "workbench.action.debug.restart"
  144. },
  145. {
  146. "key": "i",
  147. "name": "Step into",
  148. "type": "command",
  149. "command": "workbench.action.debug.stepInto"
  150. },
  151. {
  152. "key": "s",
  153. "name": "Step over",
  154. "type": "command",
  155. "command": "workbench.action.debug.stepOver"
  156. },
  157. {
  158. "key": "o",
  159. "name": "Step out",
  160. "type": "command",
  161. "command": "workbench.action.debug.stepOut"
  162. },
  163. {
  164. "key": "b",
  165. "name": "Toggle breakpoint",
  166. "type": "command",
  167. "command": "editor.debug.action.toggleBreakpoint"
  168. },
  169. {
  170. "key": "B",
  171. "name": "Toggle inline breakpoint",
  172. "type": "command",
  173. "command": "editor.debug.action.toggleInlineBreakpoint"
  174. },
  175. {
  176. "key": "j",
  177. "name": "Jump to cursor",
  178. "type": "command",
  179. "command": "debug.jumpToCursor"
  180. },
  181. {
  182. "key": "v",
  183. "name": "REPL",
  184. "type": "command",
  185. "command": "workbench.debug.action.toggleRepl"
  186. },
  187. {
  188. "key": "w",
  189. "name": "Focus on watch window",
  190. "type": "command",
  191. "command": "workbench.debug.action.focusWatchView"
  192. },
  193. {
  194. "key": "W",
  195. "name": "Add to watch",
  196. "type": "command",
  197. "command": "editor.debug.action.selectionToWatch"
  198. }
  199. ]
  200. },
  201. {
  202. "key": "e",
  203. "name": "Toggle Explorer",
  204. "type": "command",
  205. "command": "workbench.action.toggleSidebarVisibility"
  206. },
  207. {
  208. "key": "f",
  209. "name": "Find & Replace...",
  210. "type": "bindings",
  211. "bindings": [
  212. {
  213. "key": "f",
  214. "name": "File",
  215. "type": "command",
  216. "command": "editor.action.startFindReplaceAction"
  217. },
  218. {
  219. "key": "s",
  220. "name": "Symbol",
  221. "type": "command",
  222. "command": "editor.action.rename",
  223. "when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
  224. },
  225. {
  226. "key": "p",
  227. "name": "Project",
  228. "type": "command",
  229. "command": "workbench.action.replaceInFiles"
  230. }
  231. ]
  232. },
  233. {
  234. "key": "g",
  235. "name": "Git...",
  236. "type": "bindings",
  237. "bindings": [
  238. {
  239. "key": "b",
  240. "name": "Checkout",
  241. "type": "command",
  242. "command": "git.checkout"
  243. },
  244. {
  245. "key": "c",
  246. "name": "Commit",
  247. "type": "command",
  248. "command": "git.commit"
  249. },
  250. {
  251. "key": "d",
  252. "name": "Delete Branch",
  253. "type": "command",
  254. "command": "git.deleteBranch"
  255. },
  256. {
  257. "key": "f",
  258. "name": "Fetch",
  259. "type": "command",
  260. "command": "git.fetch"
  261. },
  262. {
  263. "key": "i",
  264. "name": "Init",
  265. "type": "command",
  266. "command": "git.init"
  267. },
  268. {
  269. "key": "m",
  270. "name": "Merge",
  271. "type": "command",
  272. "command": "git.merge"
  273. },
  274. {
  275. "key": "p",
  276. "name": "Publish",
  277. "type": "command",
  278. "command": "git.publish"
  279. },
  280. {
  281. "key": "s",
  282. "name": "Stash",
  283. "type": "command",
  284. "command": "workbench.view.scm"
  285. },
  286. {
  287. "key": "S",
  288. "name": "Stage",
  289. "type": "command",
  290. "command": "git.stage"
  291. },
  292. {
  293. "key": "U",
  294. "name": "Unstage",
  295. "type": "command",
  296. "command": "git.unstage"
  297. }
  298. ]
  299. },
  300. {
  301. "key": "h",
  302. "name": "Split Horizontal",
  303. "type": "command",
  304. "command": "workbench.action.splitEditorDown"
  305. },
  306. {
  307. "key": "i",
  308. "name": "Insert...",
  309. "type": "bindings",
  310. "bindings": [
  311. {
  312. "key": "j",
  313. "name": "Insert line below",
  314. "type": "command",
  315. "command": "editor.action.insertLineAfter"
  316. },
  317. {
  318. "key": "k",
  319. "name": "Insert line above",
  320. "type": "command",
  321. "command": "editor.action.insertLineBefore"
  322. },
  323. {
  324. "key": "s",
  325. "name": "Insert snippet",
  326. "type": "command",
  327. "command": "editor.action.insertSnippet"
  328. }
  329. ]
  330. },
  331. {
  332. "key": "m",
  333. "name": "minimap",
  334. "type": "command",
  335. "command": "editor.action.toggleMinimap"
  336. },
  337. {
  338. "key": "s",
  339. "name": "Search...",
  340. "type": "bindings",
  341. "bindings": [
  342. {
  343. "key": "f",
  344. "name": "files",
  345. "type": "command",
  346. "command": "workbench.action.quickOpen"
  347. },
  348. {
  349. "key": "t",
  350. "name": "text",
  351. "type": "command",
  352. "command": "workbench.action.findInFiles"
  353. }
  354. ]
  355. },
  356. {
  357. "key": "S",
  358. "name": "Show...",
  359. "type": "bindings",
  360. "bindings": [
  361. {
  362. "key": "e",
  363. "name": "Show explorer",
  364. "type": "command",
  365. "command": "workbench.view.explorer"
  366. },
  367. {
  368. "key": "s",
  369. "name": "Show search",
  370. "type": "command",
  371. "command": "workbench.view.search"
  372. },
  373. {
  374. "key": "g",
  375. "name": "Show source control",
  376. "type": "command",
  377. "command": "workbench.view.scm"
  378. },
  379. {
  380. "key": "t",
  381. "name": "Show test",
  382. "type": "command",
  383. "command": "workbench.view.extension.test"
  384. },
  385. {
  386. "key": "r",
  387. "name": "Show remote explorer",
  388. "type": "command",
  389. "command": "workbench.view.remote"
  390. },
  391. {
  392. "key": "x",
  393. "name": "Show extensions",
  394. "type": "command",
  395. "command": "workbench.view.extensions"
  396. },
  397. {
  398. "key": "p",
  399. "name": "Show problem",
  400. "type": "command",
  401. "command": "workbench.actions.view.problems"
  402. },
  403. {
  404. "key": "o",
  405. "name": "Show output",
  406. "type": "command",
  407. "command": "workbench.action.output.toggleOutput"
  408. },
  409. {
  410. "key": "d",
  411. "name": "Show debug console",
  412. "type": "command",
  413. "command": "workbench.debug.action.toggleRepl"
  414. }
  415. ]
  416. },
  417. {
  418. "key": "t",
  419. "name": "Terminal...",
  420. "type": "bindings",
  421. "bindings": [
  422. {
  423. "key": "t",
  424. "name": "Toggle Terminal",
  425. "type": "command",
  426. "command": "workbench.action.togglePanel"
  427. }
  428. ]
  429. },
  430. {
  431. "key": "T",
  432. "name": "UI toggles...",
  433. "type": "bindings",
  434. "bindings": [
  435. {
  436. "key": "b",
  437. "name": "Toggle side bar visibility",
  438. "type": "command",
  439. "command": "workbench.action.toggleSidebarVisibility"
  440. },
  441. {
  442. "key": "j",
  443. "name": "Toggle panel visibility",
  444. "type": "command",
  445. "command": "workbench.action.togglePanel"
  446. },
  447. {
  448. "key": "F",
  449. "name": "Toggle full screen",
  450. "type": "command",
  451. "command": "workbench.action.toggleFullScreen"
  452. },
  453. {
  454. "key": "s",
  455. "name": "Select theme",
  456. "type": "command",
  457. "command": "workbench.action.selectTheme"
  458. },
  459. {
  460. "key": "m",
  461. "name": "Toggle maximized panel",
  462. "type": "command",
  463. "command": "workbench.action.toggleMaximizedPanel"
  464. },
  465. {
  466. "key": "t",
  467. "name": "Toggle tool/activity bar visibility",
  468. "type": "command",
  469. "command": "workbench.action.toggleActivityBarVisibility"
  470. },
  471. {
  472. "key": "T",
  473. "name": "Toggle tab visibility",
  474. "type": "command",
  475. "command": "workbench.action.toggleTabsVisibility"
  476. }
  477. ]
  478. },
  479. {
  480. "key": "v",
  481. "name": "Split Vertical",
  482. "type": "command",
  483. "command": "workbench.action.splitEditor"
  484. },
  485. {
  486. "key": "w",
  487. "name": "Window...",
  488. "type": "bindings",
  489. "bindings": [
  490. {
  491. "key": "W",
  492. "name": "Focus previous editor group",
  493. "type": "command",
  494. "command": "workbench.action.focusPreviousGroup"
  495. },
  496. {
  497. "key": "h",
  498. "name": "Move editor group left",
  499. "type": "command",
  500. "command": "workbench.action.moveActiveEditorGroupLeft"
  501. },
  502. {
  503. "key": "j",
  504. "name": "Move editor group down",
  505. "type": "command",
  506. "command": "workbench.action.moveActiveEditorGroupDown"
  507. },
  508. {
  509. "key": "k",
  510. "name": "Move editor group up",
  511. "type": "command",
  512. "command": "workbench.action.moveActiveEditorGroupUp"
  513. },
  514. {
  515. "key": "l",
  516. "name": "Move editor group right",
  517. "type": "command",
  518. "command": "workbench.action.moveActiveEditorGroupRight"
  519. },
  520. {
  521. "key": "t",
  522. "name": "Toggle editor group sizes",
  523. "type": "command",
  524. "command": "workbench.action.toggleEditorWidths"
  525. },
  526. {
  527. "key": "m",
  528. "name": "Maximize editor group",
  529. "type": "command",
  530. "command": "workbench.action.minimizeOtherEditors"
  531. },
  532. {
  533. "key": "M",
  534. "name": "Maximize editor group and hide side bar",
  535. "type": "command",
  536. "command": "workbench.action.maximizeEditor"
  537. },
  538. {
  539. "key": "=",
  540. "name": "Reset editor group sizes",
  541. "type": "command",
  542. "command": "workbench.action.evenEditorWidths"
  543. },
  544. {
  545. "key": "z",
  546. "name": "Combine all editors",
  547. "type": "command",
  548. "command": "workbench.action.joinAllGroups"
  549. },
  550. {
  551. "key": "d",
  552. "name": "Close editor group",
  553. "type": "command",
  554. "command": "workbench.action.closeEditorsInGroup"
  555. },
  556. {
  557. "key": "x",
  558. "name": "Close all editor groups",
  559. "type": "command",
  560. "command": "workbench.action.closeAllGroups"
  561. }
  562. ]
  563. },
  564. {
  565. "key": "z",
  566. "name": "Toggle zen mode",
  567. "type": "command",
  568. "command": "workbench.action.toggleZenMode"
  569. }
  570. ],
  571. "workbench.editor.showTabs": true,
  572. "sync.gist": "939951904a077b97f8001bc35f6b5948",
  573. "gitlens.currentLine.enabled": false,
  574. "gitlens.hovers.currentLine.over": "line",
  575. "editor.suggestSelection": "first",
  576. "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  577. "python.pythonPath": "/Users/chris/.miniconda/bin/python",
  578. "java.semanticHighlighting.enabled": true,
  579. "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\"",
  580. "workbench.list.automaticKeyboardNavigation": false,
  581. "oneDarkPro.editorTheme": "onedarkPro",
  582. "python.languageServer": "Microsoft",
  583. "terminal.integrated.inheritEnv": false,
  584. "editor.scrollbar.horizontal": "hidden",
  585. "editor.scrollbar.vertical": "hidden",
  586. "kite.showWelcomeNotificationOnStartup": false,
  587. "python.terminal.activateEnvironment": false,
  588. "editor.cursorBlinking": "solid",
  589. "editor.fontFamily": "Hack, Menlo, Monaco, 'Courier New', monospace",
  590. "files.exclude": {
  591. "**/.classpath": true,
  592. "**/.project": true,
  593. "**/.settings": true,
  594. "**/.factorypath": true
  595. },
  596. "terminal.external.osxExec": "iTerm.app",
  597. "editor.minimap.enabled": false,
  598. "workbench.activityBar.visible": false,
  599. "leetcode.workspaceFolder": "/Users/chris/Repos/leetcode",
  600. "leetcode.defaultLanguage": "javascript",
  601. "leetcode.hint.configWebviewMarkdown": false,
  602. "leetcode.hint.commentDescription": false,
  603. "window.zoomLevel": 3,
  604. "window.menuBarVisibility": "toggle"
  605. }