From fc36d9953b514b1c795a59703baaa3d8f7b20ed0 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Sun, 17 Mar 2024 21:49:36 -0700 Subject: [PATCH] :wrench: More configuring vscode --- .config/VSCodium/User/keybindings.json | 37 +++++++++++++++----------- .config/VSCodium/User/settings.json | 11 +++++++- 2 files changed, 31 insertions(+), 17 deletions(-) diff --git a/.config/VSCodium/User/keybindings.json b/.config/VSCodium/User/keybindings.json index ed9aadac..e2dd48a9 100644 --- a/.config/VSCodium/User/keybindings.json +++ b/.config/VSCodium/User/keybindings.json @@ -25,34 +25,39 @@ "command": "workbench.action.previousEditor" }, { - "key": "ctrl+t", - "command": "workbench.action.files.newUntitledFile" + "key": "ctrl+t", + "command": "workbench.action.files.newUntitledFile" }, { - "key": "ctrl+h", - "command": "workbench.action.focusPreviousGroup", - "when": "activeEditorGroupIndex != 0" + "key": "ctrl+h", + "command": "workbench.action.focusPreviousGroup", + "when": "activeEditorGroupIndex != 0" }, { - "key": "ctrl+l", - "command": "workbench.action.focusNextGroup", - "when": "activeEditorGroupIndex != editorGroupCount - 1" + "key": "ctrl+l", + "command": "workbench.action.focusNextGroup", + "when": "activeEditorGroupIndex != editorGroupCount - 1" }, { - "key": "space '", - "command": "workbench.action.toggleSidebarVisibility", - "when": "sideBarFocus && activeViewlet != workbench.view.extensions && activeViewlet != workbench.view.search && activeViewlet != workbench.view.scm" + "key": "space '", + "command": "workbench.action.toggleSidebarVisibility", + "when": "sideBarFocus && activeViewlet != workbench.view.extensions && activeViewlet != workbench.view.search && activeViewlet != workbench.view.scm" }, { - "key": "ctrl+p", - "command": "workbench.action.quickOpen" + "key": "ctrl+p", + "command": "workbench.action.quickOpen" }, { "key": "alt+enter", "command": "workbench.action.terminal.toggleTerminal" }, { - "key": "ctrl+enter", - "command": "workbench.action.terminal.new" - } + "key": "ctrl+enter", + "command": "workbench.action.terminal.new" + }, + { + "key": "ctrl+down", + "command": "workbench.action.terminal.focusNext", + "when": "!terminalFocus" + }, ] \ No newline at end of file diff --git a/.config/VSCodium/User/settings.json b/.config/VSCodium/User/settings.json index f993ff7f..8ed7e665 100644 --- a/.config/VSCodium/User/settings.json +++ b/.config/VSCodium/User/settings.json @@ -5,6 +5,7 @@ "editor.smoothScrolling": true, "workbench.list.smoothScrolling": true, "terminal.integrated.smoothScrolling": true, + "terminal.integrated.fontSize": 16, "workbench.startupEditor": "none", "editor.fontSize": 16.75, "editor.cursorBlinking": "solid", @@ -15,7 +16,6 @@ "editor.fontFamily": "monospace", "editor.fontWeight": "bold", "workbench.sideBar.location": "right", - "window.menuBarVisibility": "toggle", "glassit.alpha": 230, "workbench.colorTheme": "Nord Deep", "window.restoreWindows": "none", @@ -38,6 +38,14 @@ "workbench.action.nextEditorInGroup" ] }, + { + "before": [""], + "commands": ["editor.action.insertCursorAbove"] + }, + { + "before": [""], + "commands": ["editor.action.insertCursorBelow"] + } ], "vim.leader": "", "vim.handleKeys": { @@ -47,4 +55,5 @@ "extensions.experimental.affinity": { "vscodevim.vim": 1 }, + "window.menuBarVisibility": "toggle", } \ No newline at end of file