summaryrefslogtreecommitdiffstats
path: root/User
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@x220.lan>2020-09-06 16:48:05 +0100
committerMatthew Lemon <lemon@x220.lan>2020-09-06 16:48:05 +0100
commite4640e28c8449eea66392052bfab57ce0cdd27f9 (patch)
tree2be81b55bc37da60599f4e6d434e74a57694962e /User
first commit
Diffstat (limited to '')
-rw-r--r--User/keybindings.json21
-rw-r--r--User/settings.json57
2 files changed, 78 insertions, 0 deletions
diff --git a/User/keybindings.json b/User/keybindings.json
new file mode 100644
index 0000000..8c3edad
--- /dev/null
+++ b/User/keybindings.json
@@ -0,0 +1,21 @@
+// Place your key bindings in this file to override the defaults
+[
+ {
+ "key": "ctrl+f",
+ "command": "-workbench.action.terminal.focusFindWidget",
+ "when": "terminalFocus"
+ },
+ {
+ "key": "ctrl+9",
+ "command": "editor.action.showHover",
+ "when": "editorTextFocus"
+ },
+ {
+ "key": "ctrl+tab",
+ "command": "workbench.action.openPreviousEditorFromHistory" },
+ {
+ "key": "ctrl+tab",
+ "command": "workbench.action.quickOpenNavigateNext",
+ "when": "inQuickOpen"
+ },
+] \ No newline at end of file
diff --git a/User/settings.json b/User/settings.json
new file mode 100644
index 0000000..d95c863
--- /dev/null
+++ b/User/settings.json
@@ -0,0 +1,57 @@
+{
+ "editor.suggestSelection": "first",
+ "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
+ "python.jediEnabled": false,
+ "editor.fontFamily": "'Hack', 'Monaco', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
+ "editor.fontSize": 18,
+ "terminal.integrated.fontFamily": "Hack",
+ "terminal.integrated.fontSize": 18,
+ "editor.lineNumbers": "relative",
+ "files.exclude": {
+ "**/.git": true,
+ "**/.svn": true,
+ "**/.hg": true,
+ "**/CVS": true,
+ "**/.DS_Store": true,
+ "**/.idea": true,
+ "**/.mypy_cache": true,
+ "**/.pytest_cache": true,
+ "**/.ropeproject": true,
+ "**/.vscode": true,
+ "**/__pycache__": true,
+ "**/*.egg-info": true,
+ "**/.tox": true,
+ "**/.coverage": true,
+ "**/skip-covered": true,
+ "**/pip-wheel-metadata": true,
+ "**/prof": true,
+ "**/tags": true,
+ },
+ "vim.enableNeovim": true,
+ "vim.neovimPath": "/usr/bin/nvim",
+ "vim.hlsearch": true,
+ "vim.leader": "\\",
+ "vim.visualstar": true,
+ "vim.handleKeys": {
+ "<C-d>": true,
+ "<C-b>": false,
+ "<C-r>": false,
+ "<C-k>": false,
+ },
+ "vim.searchHighlightColor": "#f93005",
+ "vim.visualModeKeyBindingsNonRecursive": [
+ {
+ "before": [">"],
+ "commands": ["editor.action.indentLines"]
+ },
+ {
+ "before": ["<"],
+ "commands": ["editor.action.outdentLines"]
+ },
+ ],
+ "editor.renderWhitespace": "none",
+ "editor.dragAndDrop": false,
+ "telemetry.enableCrashReporter": false,
+ "telemetry.enableTelemetry": false,
+ "go.formatTool": "goimports"
+} \ No newline at end of file