summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris <[email protected]>2020-09-01 21:50:24 -0400
committerChris <[email protected]>2020-09-01 21:50:24 -0400
commit459d217cb125a7f701485bdc581ee2dd4fd25dd6 (patch)
tree4e1890db9a458ad4597ebca09183674321368693
parentdfb16694bdbf3338fb1484a8f2487dcf9ea9813d (diff)
updating VSCodium settings
-rw-r--r--utils/vscode_config/keybindings.json28
-rw-r--r--utils/vscode_config/settings.json6
2 files changed, 27 insertions, 7 deletions
diff --git a/utils/vscode_config/keybindings.json b/utils/vscode_config/keybindings.json
index 26dd2dc7..a1b5c7ff 100644
--- a/utils/vscode_config/keybindings.json
+++ b/utils/vscode_config/keybindings.json
@@ -1,19 +1,19 @@
// Place your key bindings in this file to override the defaultsauto[]
[
{
- "key": "shift+cmd+e",
+ "key": "shift+ctrl+e",
"command": "actions.findWithSelection"
},
{
- "key": "cmd+e",
+ "key": "ctrl+e",
"command": "-actions.findWithSelection"
},
{
- "key": "cmd+e",
+ "key": "ctrl+e",
"command": "workbench.view.explorer"
},
{
- "key": "shift+cmd+e",
+ "key": "shift+ctrl+e",
"command": "-workbench.view.explorer"
},
{
@@ -122,8 +122,26 @@
"when": "terminalFocus"
},
{
- "key": "cmd+j",
+ "key": "ctrl+shift+t",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
+ },
+ {
+ "key": "ctrl+j",
+ "command": "-editor.action.insertLineAfter",
+ "when": "editorTextFocus && neovim.ctrlKeysInsert && !neovim.recording && neovim.mode == 'insert'"
+ },
+ {
+ "key": "alt+j",
+ "command": "workbench.action.terminal.focus",
+ "when": "!terminalFocus"
+ },
+ {
+ "key": "ctrl+shift+t",
+ "command": "workbench.action.togglePanel"
+ },
+ {
+ "key": "ctrl+j",
+ "command": "-workbench.action.togglePanel"
}
]
diff --git a/utils/vscode_config/settings.json b/utils/vscode_config/settings.json
index 6ca99671..45bf5720 100644
--- a/utils/vscode_config/settings.json
+++ b/utils/vscode_config/settings.json
@@ -598,7 +598,9 @@
"editor.minimap.enabled": false,
"workbench.activityBar.visible": false,
"leetcode.workspaceFolder": "/Users/chris/Repos/leetcode",
- "leetcode.defaultLanguage": "python3",
+ "leetcode.defaultLanguage": "javascript",
"leetcode.hint.configWebviewMarkdown": false,
- "leetcode.hint.commentDescription": false
+ "leetcode.hint.commentDescription": false,
+ "window.zoomLevel": 3,
+ "window.menuBarVisibility": "toggle"
}