Cybrkyd's Git Repositories

vscode-config - commit: 948125d

commit 948125d7e927b82360bd21a956921101a87284e293d3f26c5aee7f4fa440af58
author cybrkyd <noreply@cybrkyd.com> 2026-02-02 17:16:40 +0000
committer cybrkyd <noreply@cybrkyd.com> 2026-02-02 17:16:40 +0000

Commit Message

settings & keybindings

📊 Diffstat

README.md 2
keybindings.json 34
settings.json 7
3 files changed, 42 insertions(+), 1 deletions(-)

Diff

diff --git a/README.md b/README.md
index 8eaa9fd..f2d4bb8 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,3 @@
+ # VS Code config
+
Personal VS Code config.
diff --git a/keybindings.json b/keybindings.json
new file mode 100644
index 0000000..f7043e4
--- /dev/null
+++ b/keybindings.json
@@ -0,0 +1,34 @@
+ // Place your key bindings in this file to override the defaults
+ [
+ {
+ "key": "ctrl+d",
+ "command": "-editor.action.addSelectionToNextFindMatch",
+ "when": "editorFocus"
+ },
+ {
+ "key": "ctrl+d",
+ "command": "-notebook.addFindMatchToSelection",
+ "when": "config.notebook.multiCursor.enabled && notebookCellEditorFocused && activeEditor == 'workbench.editor.notebook'"
+ },
+ {
+ "key": "ctrl+d",
+ "command": "editor.action.deleteLines",
+ "when": "textInputFocus && !editorReadonly"
+ },
+ {
+ "key": "ctrl+shift+k",
+ "command": "-editor.action.deleteLines",
+ "when": "textInputFocus && !editorReadonly"
+ },
+ {
+ "key": "alt+s",
+ "command": "editor.action.addSelectionToNextFindMatch",
+ "when": "editorFocus"
+ },
+ {
+ "key": "alt+s",
+ "command": "notebook.addFindMatchToSelection",
+ "when": "config.notebook.multiCursor.enabled && notebookCellEditorFocused && activeEditor == 'workbench.editor.notebook'"
+ }
+ ]
+
diff --git a/settings.json b/settings.json
index 6ccb8b2..c4fc4d9 100644
--- a/settings.json
+++ b/settings.json
@@ -24,5 +24,10 @@
"telemetry.editStats.enabled": false,
"telemetry.feedback.enabled": false,
"telemetry.telemetryLevel": "off",
- "workbench.settings.showAISearchToggle": false
+ "workbench.settings.showAISearchToggle": false,
+ "editor.inlineSuggest.enabled": false,
+ "editor.inlineSuggest.suppressSuggestions": true,
+ "editor.quickSuggestions": {
+ "other": "off"
+ }
}