🔧 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" "command": "workbench.action.previousEditor"
}, },
{ {
"key": "ctrl+t", "key": "ctrl+t",
"command": "workbench.action.files.newUntitledFile" "command": "workbench.action.files.newUntitledFile"
}, },
{ {
"key": "ctrl+h", "key": "ctrl+h",
"command": "workbench.action.focusPreviousGroup", "command": "workbench.action.focusPreviousGroup",
"when": "activeEditorGroupIndex != 0" "when": "activeEditorGroupIndex != 0"
}, },
{ {
"key": "ctrl+l", "key": "ctrl+l",
"command": "workbench.action.focusNextGroup", "command": "workbench.action.focusNextGroup",
"when": "activeEditorGroupIndex != editorGroupCount - 1" "when": "activeEditorGroupIndex != editorGroupCount - 1"
}, },
{ {
"key": "space '", "key": "space '",
"command": "workbench.action.toggleSidebarVisibility", "command": "workbench.action.toggleSidebarVisibility",
"when": "sideBarFocus && activeViewlet != workbench.view.extensions && activeViewlet != workbench.view.search && activeViewlet != workbench.view.scm" "when": "sideBarFocus && activeViewlet != workbench.view.extensions && activeViewlet != workbench.view.search && activeViewlet != workbench.view.scm"
}, },
{ {
"key": "ctrl+p", "key": "ctrl+p",
"command": "workbench.action.quickOpen" "command": "workbench.action.quickOpen"
}, },
{ {
"key": "alt+enter", "key": "alt+enter",
"command": "workbench.action.terminal.toggleTerminal" "command": "workbench.action.terminal.toggleTerminal"
}, },
{ {
"key": "ctrl+enter", "key": "ctrl+enter",
"command": "workbench.action.terminal.new" "command": "workbench.action.terminal.new"
} },
{
"key": "ctrl+down",
"command": "workbench.action.terminal.focusNext",
"when": "!terminalFocus"
},
] ]

View file

@ -5,6 +5,7 @@
"editor.smoothScrolling": true, "editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true, "workbench.list.smoothScrolling": true,
"terminal.integrated.smoothScrolling": true, "terminal.integrated.smoothScrolling": true,
"terminal.integrated.fontSize": 16,
"workbench.startupEditor": "none", "workbench.startupEditor": "none",
"editor.fontSize": 16.75, "editor.fontSize": 16.75,
"editor.cursorBlinking": "solid", "editor.cursorBlinking": "solid",
@ -15,7 +16,6 @@
"editor.fontFamily": "monospace", "editor.fontFamily": "monospace",
"editor.fontWeight": "bold", "editor.fontWeight": "bold",
"workbench.sideBar.location": "right", "workbench.sideBar.location": "right",
"window.menuBarVisibility": "toggle",
"glassit.alpha": 230, "glassit.alpha": 230,
"workbench.colorTheme": "Nord Deep", "workbench.colorTheme": "Nord Deep",
"window.restoreWindows": "none", "window.restoreWindows": "none",
@ -38,6 +38,14 @@
"workbench.action.nextEditorInGroup" "workbench.action.nextEditorInGroup"
] ]
}, },
{
"before": ["<Ctrl+k>"],
"commands": ["editor.action.insertCursorAbove"]
},
{
"before": ["<Ctrl+j>"],
"commands": ["editor.action.insertCursorBelow"]
}
], ],
"vim.leader": "<space>", "vim.leader": "<space>",
"vim.handleKeys": { "vim.handleKeys": {
@ -47,4 +55,5 @@
"extensions.experimental.affinity": { "extensions.experimental.affinity": {
"vscodevim.vim": 1 "vscodevim.vim": 1
}, },
"window.menuBarVisibility": "toggle",
} }