settings.json 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720
  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": "n",
  339. "name": "highlight",
  340. "type": "command",
  341. "command": "vscode-neovim.send",
  342. "args": ":noh<CR>"
  343. },
  344. {
  345. "key": "s",
  346. "name": "Search...",
  347. "type": "bindings",
  348. "bindings": [
  349. {
  350. "key": "f",
  351. "name": "files",
  352. "type": "command",
  353. "command": "workbench.action.quickOpen"
  354. },
  355. {
  356. "key": "t",
  357. "name": "text",
  358. "type": "command",
  359. "command": "workbench.action.findInFiles"
  360. }
  361. ]
  362. },
  363. {
  364. "key": "S",
  365. "name": "Show...",
  366. "type": "bindings",
  367. "bindings": [
  368. {
  369. "key": "e",
  370. "name": "Show explorer",
  371. "type": "command",
  372. "command": "workbench.view.explorer"
  373. },
  374. {
  375. "key": "s",
  376. "name": "Show search",
  377. "type": "command",
  378. "command": "workbench.view.search"
  379. },
  380. {
  381. "key": "g",
  382. "name": "Show source control",
  383. "type": "command",
  384. "command": "workbench.view.scm"
  385. },
  386. {
  387. "key": "t",
  388. "name": "Show test",
  389. "type": "command",
  390. "command": "workbench.view.extension.test"
  391. },
  392. {
  393. "key": "r",
  394. "name": "Show remote explorer",
  395. "type": "command",
  396. "command": "workbench.view.remote"
  397. },
  398. {
  399. "key": "x",
  400. "name": "Show extensions",
  401. "type": "command",
  402. "command": "workbench.view.extensions"
  403. },
  404. {
  405. "key": "p",
  406. "name": "Show problem",
  407. "type": "command",
  408. "command": "workbench.actions.view.problems"
  409. },
  410. {
  411. "key": "o",
  412. "name": "Show output",
  413. "type": "command",
  414. "command": "workbench.action.output.toggleOutput"
  415. },
  416. {
  417. "key": "d",
  418. "name": "Show debug console",
  419. "type": "command",
  420. "command": "workbench.debug.action.toggleRepl"
  421. }
  422. ]
  423. },
  424. {
  425. "key": "t",
  426. "name": "Terminal...",
  427. "type": "bindings",
  428. "bindings": [
  429. {
  430. "key": "t",
  431. "name": "Toggle Terminal",
  432. "type": "command",
  433. "command": "workbench.action.togglePanel"
  434. }
  435. ]
  436. },
  437. {
  438. "key": "T",
  439. "name": "UI toggles...",
  440. "type": "bindings",
  441. "bindings": [
  442. {
  443. "key": "b",
  444. "name": "Toggle side bar visibility",
  445. "type": "command",
  446. "command": "workbench.action.toggleSidebarVisibility"
  447. },
  448. {
  449. "key": "j",
  450. "name": "Toggle panel visibility",
  451. "type": "command",
  452. "command": "workbench.action.togglePanel"
  453. },
  454. {
  455. "key": "F",
  456. "name": "Toggle full screen",
  457. "type": "command",
  458. "command": "workbench.action.toggleFullScreen"
  459. },
  460. {
  461. "key": "s",
  462. "name": "Select theme",
  463. "type": "command",
  464. "command": "workbench.action.selectTheme"
  465. },
  466. {
  467. "key": "m",
  468. "name": "Toggle maximized panel",
  469. "type": "command",
  470. "command": "workbench.action.toggleMaximizedPanel"
  471. },
  472. {
  473. "key": "t",
  474. "name": "Toggle tool/activity bar visibility",
  475. "type": "command",
  476. "command": "workbench.action.toggleActivityBarVisibility"
  477. },
  478. {
  479. "key": "T",
  480. "name": "Toggle tab visibility",
  481. "type": "command",
  482. "command": "workbench.action.toggleTabsVisibility"
  483. }
  484. ]
  485. },
  486. {
  487. "key": "v",
  488. "name": "Split Vertical",
  489. "type": "command",
  490. "command": "workbench.action.splitEditor"
  491. },
  492. {
  493. "key": "w",
  494. "name": "Window...",
  495. "type": "bindings",
  496. "bindings": [
  497. {
  498. "key": "W",
  499. "name": "Focus previous editor group",
  500. "type": "command",
  501. "command": "workbench.action.focusPreviousGroup"
  502. },
  503. {
  504. "key": "h",
  505. "name": "Move editor group left",
  506. "type": "command",
  507. "command": "workbench.action.moveActiveEditorGroupLeft"
  508. },
  509. {
  510. "key": "j",
  511. "name": "Move editor group down",
  512. "type": "command",
  513. "command": "workbench.action.moveActiveEditorGroupDown"
  514. },
  515. {
  516. "key": "k",
  517. "name": "Move editor group up",
  518. "type": "command",
  519. "command": "workbench.action.moveActiveEditorGroupUp"
  520. },
  521. {
  522. "key": "l",
  523. "name": "Move editor group right",
  524. "type": "command",
  525. "command": "workbench.action.moveActiveEditorGroupRight"
  526. },
  527. {
  528. "key": "t",
  529. "name": "Toggle editor group sizes",
  530. "type": "command",
  531. "command": "workbench.action.toggleEditorWidths"
  532. },
  533. {
  534. "key": "m",
  535. "name": "Maximize editor group",
  536. "type": "command",
  537. "command": "workbench.action.minimizeOtherEditors"
  538. },
  539. {
  540. "key": "M",
  541. "name": "Maximize editor group and hide side bar",
  542. "type": "command",
  543. "command": "workbench.action.maximizeEditor"
  544. },
  545. {
  546. "key": "=",
  547. "name": "Reset editor group sizes",
  548. "type": "command",
  549. "command": "workbench.action.evenEditorWidths"
  550. },
  551. {
  552. "key": "z",
  553. "name": "Combine all editors",
  554. "type": "command",
  555. "command": "workbench.action.joinAllGroups"
  556. },
  557. {
  558. "key": "d",
  559. "name": "Close editor group",
  560. "type": "command",
  561. "command": "workbench.action.closeEditorsInGroup"
  562. },
  563. {
  564. "key": "x",
  565. "name": "Close all editor groups",
  566. "type": "command",
  567. "command": "workbench.action.closeAllGroups"
  568. }
  569. ]
  570. },
  571. {
  572. "key": "z",
  573. "name": "Toggle zen mode",
  574. "type": "command",
  575. "command": "workbench.action.toggleZenMode"
  576. }
  577. ],
  578. "workbench.editor.showTabs": true,
  579. "sync.gist": "939951904a077b97f8001bc35f6b5948",
  580. "gitlens.currentLine.enabled": false,
  581. "gitlens.hovers.currentLine.over": "line",
  582. "editor.suggestSelection": "first",
  583. "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  584. "python.pythonPath": "/Users/chris/.miniconda/bin/python",
  585. "java.semanticHighlighting.enabled": true,
  586. "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\"",
  587. "workbench.list.automaticKeyboardNavigation": false,
  588. "oneDarkPro.editorTheme": "onedarkPro",
  589. "python.languageServer": "Microsoft",
  590. "editor.scrollbar.horizontal": "hidden",
  591. "editor.scrollbar.vertical": "hidden",
  592. "kite.showWelcomeNotificationOnStartup": false,
  593. "python.terminal.activateEnvironment": false,
  594. "editor.cursorBlinking": "solid",
  595. "editor.fontFamily": "Hack, Menlo, Monaco, 'Courier New', monospace",
  596. "files.exclude": {
  597. "**/.classpath": true,
  598. "**/.project": true,
  599. "**/.settings": true,
  600. "**/.factorypath": true
  601. },
  602. "terminal.external.osxExec": "iTerm.app",
  603. "editor.minimap.enabled": true,
  604. "workbench.activityBar.visible": false,
  605. "leetcode.workspaceFolder": "/Users/chris/Repos/leetcode",
  606. "leetcode.defaultLanguage": "javascript",
  607. "leetcode.hint.configWebviewMarkdown": false,
  608. "leetcode.hint.commentDescription": false,
  609. "window.zoomLevel": 3,
  610. "window.menuBarVisibility": "toggle",
  611. "python.dataScience.alwaysTrustNotebooks": true,
  612. "python.condaPath": "$HOME/.miniconda/bin/conda",
  613. "python.formatting.provider": "black",
  614. "python.insidersChannel": "daily",
  615. "terminal.integrated.shell.linux": "/bin/zsh",
  616. "terminal.external.linuxExec": "/usr/bin/alacritty",
  617. "editor.tokenColorCustomizations": {
  618. "[One Dark Pro]": {
  619. "textMateRules": [
  620. {
  621. "scope": [
  622. "support.class.component.open.jsx",
  623. "support.class.component.close.jsx",
  624. "entity.name.function.js"
  625. ],
  626. "settings": {
  627. "foreground": "#61afef"
  628. }
  629. },
  630. {
  631. "scope": [
  632. "variable.other.constant.object.js",
  633. "punctuation.section.embedded.begin.jsx",
  634. "punctuation.section.embedded.end.jsx"
  635. ],
  636. "settings": {
  637. "foreground": "#abb2bf"
  638. }
  639. },
  640. {
  641. "scope": ["punctuation.definition.tag.jsx"],
  642. "settings": {
  643. "foreground": "#5c6370"
  644. }
  645. },
  646. {
  647. "scope": [
  648. "variable.other.readwrite.js",
  649. "variable.other.property.js",
  650. "variable.parameter",
  651. "variable.other.object.js"
  652. ],
  653. "settings": {
  654. "foreground": "#56b6c2"
  655. }
  656. },
  657. {
  658. "scope": ["entity.other.attribute-name.jsx"],
  659. "settings": {
  660. "foreground": "#e5c07b"
  661. }
  662. },
  663. {
  664. "scope": [
  665. "keyword.operator.assignment.js",
  666. "keyword.operator.assignment.jsx",
  667. "string.unquoted.js",
  668. "keyword.operator.typeof.js",
  669. "meta.embedded.expression.js",
  670. "constant.other.object.key.js",
  671. "keyword.operator.logical.js"
  672. ],
  673. "settings": {
  674. "foreground": "#c678dd"
  675. }
  676. },
  677. {
  678. "scope": ["variable.other.constant.object.js"],
  679. "settings": {
  680. "foreground": "#e06c75"
  681. }
  682. }
  683. ]
  684. }
  685. },
  686. "workbench.colorCustomizations": {
  687. "[Default Dark+]": {
  688. "statusBar.background" : "#2E2E2E",
  689. "statusBar.foreground" : "#569CD6",
  690. "statusBarItem.remoteBackground": "#2E2E2E",
  691. "statusBarItem.remoteForeground": "#569CD6",
  692. "activityBar.background": "#2E2E2E",
  693. "tab.inactiveBackground": "#2E2E2E"
  694. },
  695. "[One Dark Pro]": {
  696. "editor.background": "#1e2127",
  697. "terminal.foreground": "#abb2bf",
  698. "terminal.ansiBlack": "#1e2127",
  699. "terminal.ansiBlue": "#61afef",
  700. "terminal.ansiCyan": "#56b6c2",
  701. "terminal.ansiGreen": "#98C379",
  702. "terminal.ansiMagenta": "#c678dd",
  703. "terminal.ansiRed": "#e06c75",
  704. "terminal.ansiWhite": "#abb2bf",
  705. "terminal.ansiYellow": "#d19a66",
  706. "terminal.ansiBrightBlack": "#5c6370",
  707. "terminal.ansiBrightBlue": "#61afef",
  708. "terminal.ansiBrightCyan": "#56b6c2",
  709. "terminal.ansiBrightGreen": "#98c379",
  710. "terminal.ansiBrightMagenta": "#c678dd",
  711. "terminal.ansiBrightRed": "#e06c75",
  712. "terminal.ansiBrightWhite": "#ffffff",
  713. "terminal.ansiBrightYellow": "#d19a66",
  714. },
  715. },
  716. }