summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/Code/User/keybindings.json37
-rw-r--r--.config/Code/User/settings.json5
2 files changed, 40 insertions, 2 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json
index 4f635fa..8a2fd20 100644
--- a/.config/Code/User/keybindings.json
+++ b/.config/Code/User/keybindings.json
@@ -29,6 +29,17 @@
29 "command": "workbench.action.toggleSidebarVisibility", 29 "command": "workbench.action.toggleSidebarVisibility",
30 "when": "vim.active && vim.mode == 'Normal'" 30 "when": "vim.active && vim.mode == 'Normal'"
31 }, 31 },
32 // diagnostic navigation (mirrors [g / ]g from coc.nvim)
33 {
34 "key": "[ g",
35 "command": "editor.action.marker.prevInFiles",
36 "when": "vim.active && vim.mode == 'Normal' && editorFocus"
37 },
38 {
39 "key": "] g",
40 "command": "editor.action.marker.nextInFiles",
41 "when": "vim.active && vim.mode == 'Normal' && editorFocus"
42 },
32 // splits operation 43 // splits operation
33 { 44 {
34 "key": "alt+s", 45 "key": "alt+s",
@@ -128,6 +139,14 @@
128 "command": "workbench.action.togglePanel" 139 "command": "workbench.action.togglePanel"
129 }, 140 },
130 { 141 {
142 "key": "shift+alt+b j",
143 "command": "workbench.action.togglePanel"
144 },
145 {
146 "key": "shift+alt+b down",
147 "command": "workbench.action.togglePanel"
148 },
149 {
131 "key": "ctrl+`", 150 "key": "ctrl+`",
132 "command": "-workbench.action.terminal.toggleTerminal", 151 "command": "-workbench.action.terminal.toggleTerminal",
133 "when": "terminal.active" 152 "when": "terminal.active"
@@ -159,7 +178,7 @@
159 "command": "workbench.action.nextPanelView" 178 "command": "workbench.action.nextPanelView"
160 }, 179 },
161 { 180 {
162 "key": "shift+alt+b", 181 "key": "shift+alt+b h",
163 "command": "workbench.action.toggleSidebarVisibility" 182 "command": "workbench.action.toggleSidebarVisibility"
164 }, 183 },
165 { 184 {
@@ -169,5 +188,21 @@
169 { 188 {
170 "key": "ctrl+shift+v", 189 "key": "ctrl+shift+v",
171 "command": "editor.action.clipboardPasteAction" 190 "command": "editor.action.clipboardPasteAction"
191 },
192 {
193 "key": "shift+alt+b l",
194 "command": "workbench.action.toggleAuxiliaryBar"
195 },
196 {
197 "key": "ctrl+alt+b",
198 "command": "-workbench.action.toggleAuxiliaryBar"
199 },
200 {
201 "key": "shift+alt+b left",
202 "command": "workbench.action.toggleSidebarVisibility"
203 },
204 {
205 "key": "shift+alt+b right",
206 "command": "workbench.action.toggleAuxiliaryBar"
172 } 207 }
173] 208]
diff --git a/.config/Code/User/settings.json b/.config/Code/User/settings.json
index 33cfea1..d5334f0 100644
--- a/.config/Code/User/settings.json
+++ b/.config/Code/User/settings.json
@@ -307,5 +307,8 @@
307 "github.copilot.nextEditSuggestions.enabled": true, 307 "github.copilot.nextEditSuggestions.enabled": true,
308 "files.eol": "\n", 308 "files.eol": "\n",
309 "chat.viewSessions.orientation": "stacked", 309 "chat.viewSessions.orientation": "stacked",
310 "python.terminal.activateEnvironment": false 310 "python.terminal.activateEnvironment": false,
311 "[nim]": {
312 "editor.defaultFormatter": "arnetheduck.vscode-nph"
313 }
311} \ No newline at end of file 314} \ No newline at end of file