🔧 Continued to adjust vscode settings to be more vim

This commit is contained in:
z3rOR0ne 2024-03-17 21:01:44 -07:00
parent 271e052f37
commit 0f62beb6b2
2 changed files with 44 additions and 16 deletions

View file

@ -7,6 +7,8 @@
"terminal.integrated.smoothScrolling": true,
"editor.fontSize": 16.75,
"editor.cursorBlinking": "solid",
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorSurroundingLines": 21,
"editor.cursorStyle": "block",
"editor.lineNumbers": "relative",
"editor.fontFamily": "monospace",
@ -21,25 +23,26 @@
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.insertModeKeyBindings": [],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "'"],
"commands": ["workbench.action.toggleSidebarVisibility", "workbench.files.action.focusFilesExplorer"],
},
},
{
"before": ["n", "v"],
"commands": [
"workbench.action.splitEditor",
"workbench.action.nextEditorInGroup"
]
},
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"// To improve performance",
"extensions.experimental.affinity": {
"vscodevim.vim": 1
}
},
}