diff options
Diffstat (limited to '')
-rw-r--r-- | User/keybindings.json | 21 | ||||
-rw-r--r-- | User/settings.json | 57 |
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 |