Add vscodium and integrate with neovim

This commit is contained in:
2022-09-05 15:19:52 +02:00
parent f6fae531d6
commit 9e4931f37e
7 changed files with 195 additions and 227 deletions

26
vscodium/keybindings.json Normal file
View File

@@ -0,0 +1,26 @@
[
// {
// "key": "ctrl+3",
// "command": "workbench.action.terminal.focus"
// },
{
"key": "ctrl+alt+b",
"command": "workbench.action.toggleActivityBarVisibility"
},
{
"key": "ctrl+b",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"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"
}
]