summaryrefslogtreecommitdiffstats
path: root/config/vscode
diff options
context:
space:
mode:
Diffstat (limited to 'config/vscode')
-rw-r--r--config/vscode/Readme.adoc7
-rw-r--r--config/vscode/keybindings.json58
-rw-r--r--config/vscode/settings.json14
3 files changed, 0 insertions, 79 deletions
diff --git a/config/vscode/Readme.adoc b/config/vscode/Readme.adoc
deleted file mode 100644
index d14dc6f..0000000
--- a/config/vscode/Readme.adoc
+++ /dev/null
@@ -1,7 +0,0 @@
-Preferably use "Code - OSS" instead of VSCode.
-
-Changes:
-
-* Light solarized color scheme
-* "Old" Activity Bar and Status Bar colors
-* Rulers
diff --git a/config/vscode/keybindings.json b/config/vscode/keybindings.json
deleted file mode 100644
index 7c5b25b..0000000
--- a/config/vscode/keybindings.json
+++ /dev/null
@@ -1,58 +0,0 @@
-// Place your key bindings in this file to override the defaultsauto[]
-[
- {
- "key": "f8",
- "command": "-editor.action.marker.nextInFiles",
- "when": "editorFocus"
- },
- {
- "key": "f8",
- "command": "workbench.action.debug.stepOver",
- "when": "debugState == 'stopped'"
- },
- {
- "key": "f10",
- "command": "-workbench.action.debug.stepOver",
- "when": "debugState == 'stopped'"
- },
- {
- "key": "f7",
- "command": "-editor.action.diffReview.next",
- "when": "isInDiffEditor"
- },
- {
- "key": "f7",
- "command": "-editor.action.wordHighlight.next",
- "when": "editorTextFocus && hasWordHighlights"
- },
- {
- "key": "f7",
- "command": "workbench.action.debug.stepInto",
- "when": "debugState != 'inactive'"
- },
- {
- "key": "f11",
- "command": "-workbench.action.debug.stepInto",
- "when": "debugState != 'inactive'"
- },
- {
- "key": "shift+f7",
- "command": "-editor.action.diffReview.prev",
- "when": "isInDiffEditor"
- },
- {
- "key": "shift+f7",
- "command": "-editor.action.wordHighlight.prev",
- "when": "editorTextFocus && hasWordHighlights"
- },
- {
- "key": "shift+f7",
- "command": "workbench.action.debug.stepOut",
- "when": "debugState == 'stopped'"
- },
- {
- "key": "shift+f11",
- "command": "-workbench.action.debug.stepOut",
- "when": "debugState == 'stopped'"
- }
-] \ No newline at end of file
diff --git a/config/vscode/settings.json b/config/vscode/settings.json
deleted file mode 100644
index 1c0204d..0000000
--- a/config/vscode/settings.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "editor.minimap.enabled": false,
- "editor.rulers": [80, 120],
- "editor.wordWrap": "on",
- "editor.lineNumbers": "off",
-
- "jupyter.askForKernelRestart": false,
- "[python]": {
- "editor.formatOnType": true
- },
- "terminal.integrated.enableMultiLinePasteWarning": false,
- "gitlens.hovers.currentLine.over": "line",
- "autoDocstring.docstringFormat": "sphinx-notypes",
-}