1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018 |
- {
- "vscode-neovim.neovimExecutablePaths.darwin": "/usr/local/bin/nvim",
- "vscode-neovim.neovimExecutablePaths.linux": "/usr/bin/nvim",
- "vscode-neovim.neovimInitVimPaths.darwin": "$HOME/.config/nvim/init.vim",
- "vscode-neovim.neovimInitVimPaths.linux": "$HOME/.config/nvim/init.vim",
- "whichkey.sortOrder": "alphabetically",
- "whichkey.bindings": [
- {
- "key": ";",
- "name": "commands",
- "type": "command",
- "command": "workbench.action.showCommands"
- },
- {
- "key": "/",
- "name": "comment",
- "type": "command",
- "command": "vscode-neovim.send",
- "args": "<C-/>"
- },
- {
- "key": "?",
- "name": "View All References",
- "type": "command",
- "command": "references-view.find",
- "when": "editorHasReferenceProvider"
- },
- {
- "key": "b",
- "name": "Buffers/Editors...",
- "type": "bindings",
- "bindings": [
- {
- "key": "b",
- "name": "Show all buffers/editors",
- "type": "command",
- "command": "workbench.action.showAllEditors"
- },
- {
- "key": "d",
- "name": "Close active editor",
- "type": "command",
- "command": "workbench.action.closeActiveEditor"
- },
- {
- "key": "h",
- "name": "Move editor into left group",
- "type": "command",
- "command": "workbench.action.moveEditorToLeftGroup"
- },
- {
- "key": "j",
- "name": "Move editor into below group",
- "type": "command",
- "command": "workbench.action.moveEditorToBelowGroup"
- },
- {
- "key": "k",
- "name": "Move editor into above group",
- "type": "command",
- "command": "workbench.action.moveEditorToAboveGroup"
- },
- {
- "key": "l",
- "name": "Move editor into right group",
- "type": "command",
- "command": "workbench.action.moveEditorToRightGroup"
- },
- {
- "key": "m",
- "name": "Close other editors",
- "type": "command",
- "command": "workbench.action.closeOtherEditors"
- },
- {
- "key": "n",
- "name": "Next editor",
- "type": "command",
- "command": "workbench.action.nextEditor"
- },
- {
- "key": "p",
- "name": "Previous editor",
- "type": "command",
- "command": "workbench.action.previousEditor"
- },
- {
- "key": "N",
- "name": "New untitled editor",
- "type": "command",
- "command": "workbench.action.files.newUntitledFile"
- },
- {
- "key": "u",
- "name": "Reopen closed editor",
- "type": "command",
- "command": "workbench.action.reopenClosedEditor"
- },
- {
- "key": "y",
- "name": "Copy buffer to clipboard",
- "type": "commands",
- "commands": [
- "editor.action.selectAll",
- "editor.action.clipboardCopyAction",
- "cancelSelection"
- ]
- }
- ]
- },
- {
- "key": "d",
- "name": "Debug...",
- "type": "bindings",
- "bindings": [
- {
- "key": "d",
- "name": "Start debug",
- "type": "command",
- "command": "workbench.action.debug.start"
- },
- {
- "key": "S",
- "name": "Stop debug",
- "type": "command",
- "command": "workbench.action.debug.stop"
- },
- {
- "key": "c",
- "name": "Continue debug",
- "type": "command",
- "command": "workbench.action.debug.continue"
- },
- {
- "key": "p",
- "name": "Pause debug",
- "type": "command",
- "command": "workbench.action.debug.pause"
- },
- {
- "key": "r",
- "name": "Run without debugging",
- "type": "command",
- "command": "workbench.action.debug.run"
- },
- {
- "key": "R",
- "name": "Restart debug",
- "type": "command",
- "command": "workbench.action.debug.restart"
- },
- {
- "key": "i",
- "name": "Step into",
- "type": "command",
- "command": "workbench.action.debug.stepInto"
- },
- {
- "key": "s",
- "name": "Step over",
- "type": "command",
- "command": "workbench.action.debug.stepOver"
- },
- {
- "key": "o",
- "name": "Step out",
- "type": "command",
- "command": "workbench.action.debug.stepOut"
- },
- {
- "key": "b",
- "name": "Toggle breakpoint",
- "type": "command",
- "command": "editor.debug.action.toggleBreakpoint"
- },
- {
- "key": "B",
- "name": "Toggle inline breakpoint",
- "type": "command",
- "command": "editor.debug.action.toggleInlineBreakpoint"
- },
- {
- "key": "j",
- "name": "Jump to cursor",
- "type": "command",
- "command": "debug.jumpToCursor"
- },
- {
- "key": "v",
- "name": "REPL",
- "type": "command",
- "command": "workbench.debug.action.toggleRepl"
- },
- {
- "key": "w",
- "name": "Focus on watch window",
- "type": "command",
- "command": "workbench.debug.action.focusWatchView"
- },
- {
- "key": "W",
- "name": "Add to watch",
- "type": "command",
- "command": "editor.debug.action.selectionToWatch"
- }
- ]
- },
- {
- "key": "e",
- "name": "Toggle Explorer",
- "type": "command",
- "command": "workbench.action.toggleSidebarVisibility"
- },
- {
- "key": "f",
- "name": "Find & Replace...",
- "type": "bindings",
- "bindings": [
- {
- "key": "f",
- "name": "File",
- "type": "command",
- "command": "editor.action.startFindReplaceAction"
- },
- {
- "key": "s",
- "name": "Symbol",
- "type": "command",
- "command": "editor.action.rename",
- "when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
- },
- {
- "key": "p",
- "name": "Project",
- "type": "command",
- "command": "workbench.action.replaceInFiles"
- }
- ]
- },
- {
- "key": "g",
- "name": "Git...",
- "type": "bindings",
- "bindings": [
- {
- "key": "/",
- "name": "Search Commits",
- "command": "gitlens.showCommitSearch",
- "type": "command",
- "when": "gitlens:enabled && config.gitlens.keymap == 'alternate'"
- },
- {
- "key": "a",
- "name": "Stage",
- "type": "command",
- "command": "git.stage"
- },
- {
- "key": "b",
- "name": "Checkout",
- "type": "command",
- "command": "git.checkout"
- },
- {
- "key": "B",
- "name": "Browse",
- "type": "command",
- "command": "gitlens.openFileInRemote"
- },
- {
- "key": "c",
- "name": "Commit",
- "type": "command",
- "command": "git.commit"
- },
- {
- "key": "C",
- "name": "Cherry Pick",
- "type": "command",
- "command": "gitlens.views.cherryPick"
- },
- {
- "key": "d",
- "name": "Delete Branch",
- "type": "command",
- "command": "git.deleteBranch"
- },
- {
- "key": "g",
- "name": "Graph",
- "type": "command",
- "command": "git-graph.view"
- },
- {
- "key": "h",
- "name": "Heatmap",
- "type": "command",
- "command": "gitlens.toggleFileHeatmap"
- },
- {
- "key": "f",
- "name": "Fetch",
- "type": "command",
- "command": "git.fetch"
- },
- {
- "key": "F",
- "name": "Pull From",
- "type": "command",
- "command": "git.pullFrom"
- },
- {
- "key": "i",
- "name": "Init",
- "type": "command",
- "command": "git.init"
- },
- {
- "key": "l",
- "name": "Toggle Line Blame",
- "type": "command",
- "command": "gitlens.toggleLineBlame",
- "when": "editorTextFocus && gitlens:canToggleCodeLens && gitlens:enabled && config.gitlens.keymap == 'alternate'"
- },
- {
- "key": "L",
- "name": "Toggle GitLens",
- "type": "command",
- "command": "gitlens.toggleCodeLens",
- "when": "editorTextFocus && gitlens:canToggleCodeLens && gitlens:enabled && config.gitlens.keymap == 'alternate'"
- },
- {
- "key": "m",
- "name": "Merge",
- "type": "command",
- "command": "git.merge"
- },
- {
- "key": "p",
- "name": "Push",
- "type": "command",
- "command": "git.push"
- },
- {
- "key": "P",
- "name": "Push",
- "type": "command",
- "command": "git.pull"
- },
- {
- "key": "s",
- "name": "Stash",
- "type": "command",
- "command": "workbench.view.scm"
- },
- {
- "key": "S",
- "name": "Status",
- "type": "command",
- "command": "gitlens.showQuickRepoStatus",
- "when": "gitlens:enabled && config.gitlens.keymap == 'alternate'"
- },
- {
- "key": "t",
- "name": "Create Tag",
- "type": "command",
- "command": "git.createTag"
- },
- {
- "key": "T",
- "name": "Delete Tag",
- "type": "command",
- "command": "git.deleteTag"
- },
- {
- "key": "U",
- "name": "Unstage",
- "type": "command",
- "command": "git.unstage"
- }
- ]
- },
- {
- "key": "h",
- "name": "Split Horizontal",
- "type": "command",
- "command": "workbench.action.splitEditorDown"
- },
- {
- "key": "i",
- "name": "Insert...",
- "type": "bindings",
- "bindings": [
- {
- "key": "j",
- "name": "Insert line below",
- "type": "command",
- "command": "editor.action.insertLineAfter"
- },
- {
- "key": "k",
- "name": "Insert line above",
- "type": "command",
- "command": "editor.action.insertLineBefore"
- },
- {
- "key": "s",
- "name": "Insert snippet",
- "type": "command",
- "command": "editor.action.insertSnippet"
- }
- ]
- },
- {
- "key": "l",
- "name": "LSP...",
- "type": "bindings",
- "bindings": [
- {
- "key": ";",
- "name": "Refactor",
- "type": "command",
- "command": "editor.action.refactor",
- "when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
- },
- {
- "key": "a",
- "name": "Auto Fix",
- "type": "command",
- "command": "editor.action.autoFix",
- "when": "editorTextFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)quickfix\\b/"
- },
- {
- "key": "d",
- "name": "Definition",
- "type": "command",
- "command": "editor.action.revealDefinition",
- "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
- },
- {
- "key": "D",
- "name": "Declaration",
- "type": "command",
- "command": "editor.action.revealDeclaration"
- },
- {
- "key": "e",
- "name": "Errors",
- "type": "command",
- "command": "workbench.actions.view.problems"
- },
- {
- "key": "f",
- "name": "Format",
- "type": "command",
- "command": "editor.action.formatDocument",
- "when": "editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor"
- },
- {
- "key": "i",
- "name": "Implementation",
- "type": "command",
- "command": "editor.action.goToImplementation",
- "when": "editorHasImplementationProvider && editorTextFocus && !isInEmbeddedEditor"
- },
- {
- "key": "l",
- "name": "Code Lens",
- "type": "command",
- "command": "codelens.showLensesInCurrentLine"
- },
- {
- "key": "n",
- "name": "Next Problem",
- "type": "command",
- "command": "editor.action.marker.next",
- "when": "editorFocus"
- },
- {
- "key": "N",
- "name": "Next Problem (Proj)",
- "type": "command",
- "command": "editor.action.marker.nextInFiles",
- "when": "editorFocus"
- },
- {
- "key": "o",
- "name": "Outline",
- "type": "command",
- "command": "outline.focus"
- },
- {
- "key": "p",
- "name": "Prev Problem",
- "type": "command",
- "command": "editor.action.marker.prevInFiles",
- "when": "editorFocus"
- },
- {
- "key": "P",
- "name": "Prev Problem (Proj)",
- "type": "command",
- "command": "editor.action.marker.prev",
- "when": "editorFocus"
- },
- {
- "key": "q",
- "name": "Quick Fix",
- "type": "command",
- "command": "editor.action.quickFix",
- "when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
- },
- {
- "key": "r",
- "name": "References",
- "type": "command",
- "command": "editor.action.goToReferences",
- "when": "editorHasReferenceProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor"
- },
- {
- "key": "R",
- "name": "Rename",
- "type": "command",
- "command": "editor.action.rename",
- "when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
- },
- {
- "key": "v",
- "name": "View All References",
- "type": "command",
- "command": "references-view.find",
- "when": "editorHasReferenceProvider"
- },
- {
- "key": "s",
- "name": "Go to Symbol (Editor)",
- "type": "command",
- "command": "workbench.action.gotoSymbol"
- },
- {
- "key": "S",
- "name": "Go to Symbol (Workspace)",
- "type": "command",
- "command": "workbench.action.showAllSymbols"
- }
- ]
- },
- {
- "key": "m",
- "name": "Minimap",
- "type": "command",
- "command": "editor.action.toggleMinimap"
- },
- {
- "key": "n",
- "name": "No Highlight",
- "type": "command",
- "command": "vscode-neovim.send",
- "args": ":noh<CR>"
- },
- {
- "key": "p",
- "name": "Peek...",
- "type": "bindings",
- "bindings": [
- {
- "key": "d",
- "name": "Definition",
- "type": "command",
- "command": "editor.action.peekDefinition",
- "when": "editorHasDefinitionProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor"
- },
- {
- "key": "D",
- "name": "Declaration",
- "type": "command",
- "command": "editor.action.peekDeclaration"
- },
- {
- "key": "i",
- "name": "Implementation",
- "type": "command",
- "command": "editor.action.peekImplementation",
- "when": "editorHasImplementationProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor"
- },
- {
- "key": "p",
- "name": "Toggle Focus",
- "type": "command",
- "command": "togglePeekWidgetFocus",
- "when": "inReferenceSearchEditor || referenceSearchVisible"
- },
- {
- "key": "r",
- "name": "References",
- "type": "command",
- "command": "editor.action.referenceSearch.trigger"
- },
- {
- "key": "t",
- "name": "Type Definition",
- "type": "command",
- "command": "editor.action.peekTypeDefinition"
- }
- ]
- },
- {
- "key": "s",
- "name": "Search...",
- "type": "bindings",
- "bindings": [
- {
- "key": "f",
- "name": "Files",
- "type": "command",
- "command": "workbench.action.quickOpen"
- },
- {
- "key": "t",
- "name": "Text",
- "type": "command",
- "command": "workbench.action.findInFiles"
- }
- ]
- },
- {
- "key": "S",
- "name": "Show...",
- "type": "bindings",
- "bindings": [
- {
- "key": "e",
- "name": "Show explorer",
- "type": "command",
- "command": "workbench.view.explorer"
- },
- {
- "key": "s",
- "name": "Show search",
- "type": "command",
- "command": "workbench.view.search"
- },
- {
- "key": "g",
- "name": "Show source control",
- "type": "command",
- "command": "workbench.view.scm"
- },
- {
- "key": "t",
- "name": "Show test",
- "type": "command",
- "command": "workbench.view.extension.test"
- },
- {
- "key": "r",
- "name": "Show remote explorer",
- "type": "command",
- "command": "workbench.view.remote"
- },
- {
- "key": "x",
- "name": "Show extensions",
- "type": "command",
- "command": "workbench.view.extensions"
- },
- {
- "key": "p",
- "name": "Show problem",
- "type": "command",
- "command": "workbench.actions.view.problems"
- },
- {
- "key": "o",
- "name": "Show output",
- "type": "command",
- "command": "workbench.action.output.toggleOutput"
- },
- {
- "key": "d",
- "name": "Show debug console",
- "type": "command",
- "command": "workbench.debug.action.toggleRepl"
- }
- ]
- },
- {
- "key": "t",
- "name": "Terminal...",
- "type": "bindings",
- "bindings": [
- {
- "key": "t",
- "name": "Toggle Terminal",
- "type": "command",
- "command": "workbench.action.togglePanel"
- },
- {
- "key": "T",
- "name": "Focus Terminal",
- "type": "command",
- "command": "workbench.action.terminal.toggleTerminal",
- "when": "!terminalFocus"
- }
- ]
- },
- {
- "key": "U",
- "name": "UI toggles...",
- "type": "bindings",
- "bindings": [
- {
- "key": "a",
- "name": "Toggle tool/activity bar visibility",
- "type": "command",
- "command": "workbench.action.toggleActivityBarVisibility"
- },
- {
- "key": "b",
- "name": "Toggle side bar visibility",
- "type": "command",
- "command": "workbench.action.toggleSidebarVisibility"
- },
- {
- "key": "j",
- "name": "Toggle panel visibility",
- "type": "command",
- "command": "workbench.action.togglePanel"
- },
- {
- "key": "F",
- "name": "Toggle full screen",
- "type": "command",
- "command": "workbench.action.toggleFullScreen"
- },
- {
- "key": "s",
- "name": "Select theme",
- "type": "command",
- "command": "workbench.action.selectTheme"
- },
- {
- "key": "m",
- "name": "Toggle maximized panel",
- "type": "command",
- "command": "workbench.action.toggleMaximizedPanel"
- },
- {
- "key": "T",
- "name": "Toggle tab visibility",
- "type": "command",
- "command": "workbench.action.toggleTabsVisibility"
- }
- ]
- },
- {
- "key": "v",
- "name": "Split Vertical",
- "type": "command",
- "command": "workbench.action.splitEditor"
- },
- {
- "key": "w",
- "name": "Window...",
- "type": "bindings",
- "bindings": [
- {
- "key": "W",
- "name": "Focus previous editor group",
- "type": "command",
- "command": "workbench.action.focusPreviousGroup"
- },
- {
- "key": "h",
- "name": "Move editor group left",
- "type": "command",
- "command": "workbench.action.moveActiveEditorGroupLeft"
- },
- {
- "key": "j",
- "name": "Move editor group down",
- "type": "command",
- "command": "workbench.action.moveActiveEditorGroupDown"
- },
- {
- "key": "k",
- "name": "Move editor group up",
- "type": "command",
- "command": "workbench.action.moveActiveEditorGroupUp"
- },
- {
- "key": "l",
- "name": "Move editor group right",
- "type": "command",
- "command": "workbench.action.moveActiveEditorGroupRight"
- },
- {
- "key": "t",
- "name": "Toggle editor group sizes",
- "type": "command",
- "command": "workbench.action.toggleEditorWidths"
- },
- {
- "key": "m",
- "name": "Maximize editor group",
- "type": "command",
- "command": "workbench.action.minimizeOtherEditors"
- },
- {
- "key": "M",
- "name": "Maximize editor group and hide side bar",
- "type": "command",
- "command": "workbench.action.maximizeEditor"
- },
- {
- "key": "=",
- "name": "Reset editor group sizes",
- "type": "command",
- "command": "workbench.action.evenEditorWidths"
- },
- {
- "key": "z",
- "name": "Combine all editors",
- "type": "command",
- "command": "workbench.action.joinAllGroups"
- },
- {
- "key": "d",
- "name": "Close editor group",
- "type": "command",
- "command": "workbench.action.closeEditorsInGroup"
- },
- {
- "key": "x",
- "name": "Close all editor groups",
- "type": "command",
- "command": "workbench.action.closeAllGroups"
- }
- ]
- },
- {
- "key": "x",
- "name": "Extensions",
- "type": "command",
- "command": "workbench.view.extensions"
- },
- {
- "key": "y",
- "name": "Sync...",
- "type": "bindings",
- "bindings": [
- {
- "key": "d",
- "name": "Download Settings",
- "type": "command",
- "command": "extension.downloadSettings"
- },
- {
- "key": "u",
- "name": "Upload Settings",
- "type": "command",
- "command": "extension.updateSettings"
- }
- ]
- },
- {
- "key": "z",
- "name": "Toggle zen mode",
- "type": "command",
- "command": "workbench.action.toggleZenMode"
- }
- ],
- "workbench.editor.showTabs": true,
- "sync.gist": "939951904a077b97f8001bc35f6b5948",
- "gitlens.hovers.currentLine.over": "line",
- "editor.suggestSelection": "first",
- "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
- "python.pythonPath": "/Users/chris/.miniconda/bin/python",
- "java.semanticHighlighting.enabled": true,
- "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\"",
- "workbench.list.automaticKeyboardNavigation": false,
- "oneDarkPro.editorTheme": "onedarkPro",
- "python.languageServer": "Microsoft",
- "editor.scrollbar.horizontal": "hidden",
- "editor.scrollbar.vertical": "hidden",
- "kite.showWelcomeNotificationOnStartup": false,
- "python.terminal.activateEnvironment": false,
- "editor.cursorBlinking": "solid",
- "editor.fontFamily": "Hack, Menlo, Monaco, 'Courier New', monospace",
- "files.exclude": {
- "**/.classpath": true,
- "**/.project": true,
- "**/.settings": true,
- "**/.factorypath": true
- },
- "terminal.external.osxExec": "iTerm.app",
- "editor.minimap.enabled": false,
- "workbench.activityBar.visible": false,
- "leetcode.workspaceFolder": "/Users/chris/Repos/leetcode",
- "leetcode.defaultLanguage": "javascript",
- "leetcode.hint.configWebviewMarkdown": false,
- "leetcode.hint.commentDescription": false,
- "window.zoomLevel": 3,
- "window.menuBarVisibility": "toggle",
- "python.dataScience.alwaysTrustNotebooks": true,
- "python.condaPath": "$HOME/.miniconda/bin/conda",
- "python.formatting.provider": "black",
- "python.insidersChannel": "daily",
- "terminal.integrated.shell.linux": "/bin/zsh",
- "terminal.external.linuxExec": "/usr/bin/alacritty",
- "editor.tokenColorCustomizations": {
- "[One Dark Pro]": {
- "textMateRules": [
- {
- "scope": [
- "support.class.component.open.jsx",
- "support.class.component.close.jsx",
- "entity.name.function.js"
- ],
- "settings": {
- "foreground": "#61afef"
- }
- },
- {
- "scope": [
- "variable.other.constant.object.js",
- "punctuation.section.embedded.begin.jsx",
- "punctuation.section.embedded.end.jsx"
- ],
- "settings": {
- "foreground": "#abb2bf"
- }
- },
- {
- "scope": ["punctuation.definition.tag.jsx"],
- "settings": {
- "foreground": "#5c6370"
- }
- },
- {
- "scope": [
- "variable.other.readwrite.js",
- "variable.other.property.js",
- "variable.parameter",
- "variable.other.object.js"
- ],
- "settings": {
- "foreground": "#56b6c2"
- }
- },
- {
- "scope": ["entity.other.attribute-name.jsx"],
- "settings": {
- "foreground": "#e5c07b"
- }
- },
- {
- "scope": [
- "keyword.operator.assignment.js",
- "keyword.operator.assignment.jsx",
- "string.unquoted.js",
- "keyword.operator.typeof.js",
- "meta.embedded.expression.js",
- "constant.other.object.key.js",
- "keyword.operator.logical.js"
- ],
- "settings": {
- "foreground": "#c678dd"
- }
- },
- {
- "scope": ["variable.other.constant.object.js"],
- "settings": {
- "foreground": "#e06c75"
- }
- }
- ]
- }
- },
- "workbench.colorCustomizations": {
- "[Default Dark+]": {
- "statusBar.background": "#2E2E2E",
- "statusBar.foreground": "#8C8C8C",
- "statusBarItem.remoteBackground": "#2E2E2E",
- "statusBarItem.remoteForeground": "#8C8C8C",
- "activityBar.background": "#2E2E2E",
- "tab.inactiveBackground": "#2E2E2E"
- },
- "[One Dark Pro]": {
- "editor.background": "#1e2127",
- "terminal.foreground": "#abb2bf",
- "terminal.ansiBlack": "#1e2127",
- "terminal.ansiBlue": "#61afef",
- "terminal.ansiCyan": "#56b6c2",
- "terminal.ansiGreen": "#98C379",
- "terminal.ansiMagenta": "#c678dd",
- "terminal.ansiRed": "#e06c75",
- "terminal.ansiWhite": "#abb2bf",
- "terminal.ansiYellow": "#d19a66",
- "terminal.ansiBrightBlack": "#5c6370",
- "terminal.ansiBrightBlue": "#61afef",
- "terminal.ansiBrightCyan": "#56b6c2",
- "terminal.ansiBrightGreen": "#98c379",
- "terminal.ansiBrightMagenta": "#c678dd",
- "terminal.ansiBrightRed": "#e06c75",
- "terminal.ansiBrightWhite": "#ffffff",
- "terminal.ansiBrightYellow": "#d19a66"
- }
- },
- "gitlens.advanced.telemetry.enabled": false,
- "gitlens.currentLine.enabled": false,
- "[javascript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- }
- }
|