1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
| { "vim.easymotion": true, "vim.sneak": true, "vim.visualstar": true, "vim.ignorecase": false, "vim.useSystemClipboard": true, "vim.useCtrlKeys": true, "vim.hlsearch": true, "vim.insertModeKeyBindings": [ { "before": ["k","j"], "after": ["<Esc>"] } ], "vim.leader": ",", "vim.visualModeKeyBindingsNonRecursive": [ { "before": ["v"], "commands": ["editor.action.smartSelect.expand"] }, { "before": ["%"], "commands": ["extension.matchitJumpItems"] }, { "before": ["<leader>","x", "x"], "commands": ["editor.action.smartSelect.expand"] }, { "before": ["<leader>","z", "z"], "commands": ["editor.action.smartSelect.shrink"] }, { "before": ["<leader>","c", "i"], "commands": ["editor.action.commentLine"] }, { "before": ["<leader", "a", "a"], "commands": ["editor.action.clipboardCopyAction"] }, { "before": ["<leader>","q", "q"], "commands": ["workbench.action.findInFiles"] }, { "before": ["<leader>","s", "s"], "commands": ["actions.find"] } ], "vim.normalModeKeyBindingsNonRecursive": [ { "before": ["<leader>","r", "v"], "commands": ["editor.action.rename"] }, { "before": ["<leader>","q", "q"], "commands": ["workbench.action.findInFiles"] }, { "before": ["<leader>","f", "p"], "commands": ["workbench.action.files.copyPathOfActiveFile"] }, { "before": ["<leader>","f", "n"], "commands": ["copyRelativeFilePath"] }, { "before": ["<leader>","t", "p"], "commands": ["workbench.action.togglePanel"] }, { "before": ["<leader>","x", "m"], "commands": ["workbench.action.showCommands"] }, { "before": ["<leader>","c", "i"], "commands": ["editor.action.commentLine"] }, { "before": ["<leader>","x", "x"], "commands": ["editor.action.smartSelect.expand"] }, { "before": ["<leader>","z", "z"], "commands": ["editor.action.smartSelect.shrink"] }, { "before": ["<leader>","t", "a"], "commands": ["workbench.action.toggleActivityBarVisibility"] }, { "before": ["<leader>","t", "b"], "commands": ["workbench.action.toggleSidebarVisibility"] }, { "before": ["<leader>","x", "s"], "commands": ["workbench.action.files.save"] }, { "before": ["<leader>","s", "s"], "commands": ["actions.find"] }, { "before": ["%"], "commands": ["extension.matchitJumpItems"] }, { "before": ["<leader>","s", "i"], "commands": ["extension.matchitSelectItems"] }, { "before": ["<leader>","d", "i"], "commands": ["extension.matchitDeleteItems"] }, { "before": ["<leader>","x", "f"], "commands": ["workbench.action.files.openFile"] }, { "before": ["<leader>", "x", "k"], "commands": ["workbench.action.closeActiveEditor"] }, { "before": ["<leader>","r", "r"], "commands": ["workbench.action.openRecent"] }, { "before": ["<leader>","k", "k"], "commands": ["workbench.action.quickOpen"] }, { "before": ["<leader>","i", "i"], "commands": ["workbench.action.gotoSymbol"] }, { "before": ["<leader>","x", "1"], "commands": ["workbench.action.editorLayoutSingle"] }, { "before": ["<leader>","x", "3"], "commands": ["workbench.action.splitEditorRight"] }, { "before": ["<leader>","x", "2"], "commands": ["workbench.action.splitEditorDown"] }, { "before": ["<leader>","x", "4"], "commands": ["workbench.action.editorLayoutTwoByTwoGrid"] }, { "before": ["<leader>","x", "0"], "commands": ["workbench.action.closeGroup"] }, { "before": ["<leader>","x", "z"], "commands": ["workbench.action.terminal.focus"] }, { "before": ["<leader>","f", "f"], "commands": ["workbench.action.toggleZenMode"] }, { "before": ["<leader>","w", "h"], "after": ["<C-w>", "h"] }, { "before": ["<leader>","w", "j"], "after": ["<C-w>", "j"] }, { "before": ["<leader>","w", "k"], "after": ["<C-w>", "k"] }, { "before": ["<leader>","w", "l"], "after": ["<C-w>", "l"] }, { "before": ["<leader>","w", "q"], "after": [":wq"], } ], "vim.handleKeys":{ "<C-a>": false, }, "zenMode.centerLayout": false, "window.zoomLevel": 1, "editor.minimap.enabled": false, "search.exclude": { "**/.git": true, "**/*.bundle.js": true, "**/bin-packages": true, "**/frontend-dist": true, "**/npm-packages-offline-cache": true }, "search.useGlobalIgnoreFiles": true, "search.location": "panel", "workbench.activityBar.visible": false, "files.autoSave": "afterDelay", "workbench.colorTheme": "Solarized Dark", "workbench.statusBar.visible": true, "editor.renderWhitespace": "none", "editor.renderControlCharacters": false, "window.titleBarStyle": "native", "editor.renderLineHighlight": "none", "extensions.ignoreRecommendations": true, "editor.occurrencesHighlight": false }
|