🔧 More configuring vscode

This commit is contained in:
z3rOR0ne 2024-03-17 21:49:36 -07:00
parent 65404da6be
commit fc36d9953b
2 changed files with 31 additions and 17 deletions

View file

@ -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"
},
]

View file

@ -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": ["<Ctrl+k>"],
"commands": ["editor.action.insertCursorAbove"]
},
{
"before": ["<Ctrl+j>"],
"commands": ["editor.action.insertCursorBelow"]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
@ -47,4 +55,5 @@
"extensions.experimental.affinity": {
"vscodevim.vim": 1
},
"window.menuBarVisibility": "toggle",
}