summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkj_sh604 <43.splash@gmail.com>2026-02-22 06:15:17 -0500
committerkj_sh604 <43.splash@gmail.com>2026-02-22 06:15:17 -0500
commit7a0182178e135002d1d9c90f05b8df2e787a2dd3 (patch)
treec36eccf7af54ca92afb973a9495741ef2f191e3d
parent12bdabfa9bb73f4563482a929856246da3431442 (diff)
refactor: even more minimal vscode config
-rw-r--r--.config/Code/User/keybindings.json32
-rw-r--r--.config/Code/User/settings.json12
2 files changed, 8 insertions, 36 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json
index ace85aa..48a93f9 100644
--- a/.config/Code/User/keybindings.json
+++ b/.config/Code/User/keybindings.json
@@ -210,45 +210,23 @@
"key": "shift+alt+b right",
"command": "workbench.action.toggleAuxiliaryBar"
},
- // zen mode (editor + status bar only)
+ // command center toggles
{
"key": "shift+alt+b up",
"command": "runCommands",
"args": {
"commands": [
- "workbench.action.toggleZenMode"
+ "toggle.window.commandCenter"
]
- },
- "when": "!inZenMode"
- },
- {
- "key": "shift+alt+b up",
- "command": "runCommands",
- "args": {
- "commands": [
- "workbench.action.toggleZenMode",
- ]
- },
- "when": "inZenMode"
- },
- {
- "key": "shift+alt+b k",
- "command": "runCommands",
- "args": {
- "commands": [
- "workbench.action.toggleZenMode",
- ]
- },
- "when": "!inZenMode"
+ }
},
{
"key": "shift+alt+b k",
"command": "runCommands",
"args": {
"commands": [
- "workbench.action.toggleZenMode",
+ "toggle.window.commandCenter"
]
- },
- "when": "inZenMode"
+ }
},
] \ No newline at end of file
diff --git a/.config/Code/User/settings.json b/.config/Code/User/settings.json
index 8439190..e35fded 100644
--- a/.config/Code/User/settings.json
+++ b/.config/Code/User/settings.json
@@ -268,7 +268,9 @@
"window.menuBarVisibility": "toggle",
"window.newWindowDimensions": "inherit",
"window.restoreWindows": "none",
- "workbench.activityBar.location": "default",
+ "window.commandCenter": false,
+ "workbench.activityBar.location": "top",
+ "workbench.layoutControl.enabled": false,
"workbench.colorCustomizations": {
"editorCursor.background": "#303030",
"editorCursor.foreground": "#69baa7",
@@ -311,12 +313,4 @@
"[nim]": {
"editor.defaultFormatter": "arnetheduck.vscode-nph"
},
- "zenMode.centerLayout": false,
- "zenMode.fullScreen": false,
- "zenMode.hideActivityBar": true,
- "zenMode.hideLineNumbers": false,
- "zenMode.hideStatusBar": false,
- "zenMode.restore": true,
- "zenMode.showTabs": "none",
- "zenMode.silentNotifications": false
} \ No newline at end of file