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