settings.json 17 KB

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