Add VS Code and Windows Terminal configurations

This commit is contained in:
Riz Ashraf
2026-02-13 09:58:52 +00:00
parent 5141c782a3
commit 3ded3e5e1e
3 changed files with 550 additions and 0 deletions
@@ -0,0 +1,27 @@
[{
"command": "vscode-neovim.compositeEscape1",
"key": "j",
"when": "neovim.mode == insert && editorTextFocus",
"args": "j"
},
{
"command": "vscode-neovim.compositeEscape2",
"key": "k",
"when": "neovim.mode == insert && editorTextFocus",
"args": "k"
},
{
"key": "ctrl+r",
"command": "extension.vim_ctrl+r",
"when": "textInputFocus && vim.mode != 'Insert'"
},
{
"key": "space f f",
"command": "workbench.action.toggleSidebarVisibility",
"when": "neovim.mode == normal && editorTextFocus"
},
{
"key": "ctrl+n",
"command": "-workbench.action.showAllSymbols"
},
]