more vim
This commit is contained in:
parent
953c3de7b0
commit
96e8b1d7c2
|
@ -47,3 +47,4 @@ shared_proto_db
|
|||
Local State
|
||||
code.lock
|
||||
machineid
|
||||
Backups/c5da8c1968624d1e8b03520909badb4c/vscode-remote
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
{"partition":{"per_host_zoom_levels":{"17866914613510039610":{"vscode-app":-1.0}}},"spellcheck":{"dictionaries":["de"],"dictionary":""}}
|
|
@ -0,0 +1,43 @@
|
|||
// Place your key bindings in this file to override the defaults
|
||||
[
|
||||
{
|
||||
"key": "f12",
|
||||
"command": "-editor.action.revealDefinition",
|
||||
"when": "editorHasDefinitionProvider && editorTextFocus"
|
||||
},
|
||||
{
|
||||
"key": "f12",
|
||||
"command": "-editor.gotoNextSymbolFromResult",
|
||||
"when": "hasSymbols"
|
||||
},
|
||||
{
|
||||
"key": "f12",
|
||||
"command": "-goToNextReference",
|
||||
"when": "inReferenceSearchEditor || referenceSearchVisible"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+oem_3",
|
||||
"command": "workbench.action.terminal.toggleTerminal"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+oem_3",
|
||||
"command": "-workbench.action.terminal.toggleTerminal",
|
||||
"when": "terminal.active"
|
||||
},
|
||||
{
|
||||
"key": "f12",
|
||||
"command": "workbench.action.terminal.toggleTerminal"
|
||||
},
|
||||
{
|
||||
"key": "alt+j",
|
||||
"command": "vscode-neovim.send",
|
||||
"when": "editorTextFocus && neovim.init",
|
||||
"args": "<M-j>"
|
||||
},
|
||||
{
|
||||
"key": "alt+k",
|
||||
"command": "vscode-neovim.send",
|
||||
"when": "editorTextFocus && neovim.init",
|
||||
"args": "<M-k>"
|
||||
}
|
||||
]
|
|
@ -43,7 +43,6 @@
|
|||
"git.autofetch": true,
|
||||
"cSpell.language": "en,de-DE,de",
|
||||
"terminal.integrated.rightClickBehavior": "nothing",
|
||||
"terminal.integrated.allowChords": false,
|
||||
"terminal.integrated.sendKeybindingsToShell": true,
|
||||
"[python]": {
|
||||
"editor.formatOnType": true
|
||||
|
@ -78,7 +77,7 @@
|
|||
"cSpell.fixSpellingWithRenameProvider": true,
|
||||
"cSpell.advanced.feature.useReferenceProviderWithRename": true,
|
||||
"cSpell.advanced.feature.useReferenceProviderRemove": "/^#+\\s/",
|
||||
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
|
||||
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
|
||||
},
|
||||
"extensions.experimental.affinity": {
|
||||
"asvetliakov.vscode-neovim": 1
|
||||
|
@ -111,6 +110,16 @@
|
|||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
"down",
|
||||
"k",
|
||||
"b",
|
||||
"l"
|
||||
],
|
||||
"terminal.integrated.commandsToSkipShell": [
|
||||
"workbench.action.terminal.toggleTerminal"
|
||||
],
|
||||
"terminal.integrated.allowChords": false,
|
||||
"editor.codeLensFontFamily": "'FiraCode Nerd Font'",
|
||||
"editor.fontLigatures": true,
|
||||
"git.openRepositoryInParentFolders": "never"
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
{}
|
Loading…
Reference in New Issue