From e4640e28c8449eea66392052bfab57ce0cdd27f9 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sun, 6 Sep 2020 16:48:05 +0100 Subject: first commit --- User/keybindings.json | 21 +++++++++++++++++++ User/settings.json | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 User/keybindings.json create mode 100644 User/settings.json (limited to 'User') 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": { + "": true, + "": false, + "": false, + "": 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 -- cgit v1.2.3