This commit is contained in:
Christoph J. Scherr 2024-03-06 16:05:28 +01:00
parent 953c3de7b0
commit 96e8b1d7c2
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
5 changed files with 59 additions and 4 deletions

1
.gitignore vendored
View File

@ -47,3 +47,4 @@ shared_proto_db
Local State
code.lock
machineid
Backups/c5da8c1968624d1e8b03520909badb4c/vscode-remote

1
Preferences Normal file
View File

@ -0,0 +1 @@
{"partition":{"per_host_zoom_levels":{"17866914613510039610":{"vscode-app":-1.0}}},"spellcheck":{"dictionaries":["de"],"dictionary":""}}

View File

@ -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>"
}
]

View File

@ -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"
}

1
languagepacks.json Normal file
View File

@ -0,0 +1 @@
{}