commit 7fe5b84aee85ab0abee7946e30a45c74100fb66b
parent 2884f49ce3c32b54a714cccdf18d4211360509c1
Author: minerva-jupiter <ryouturn@gmail.com>
Date: Sat, 25 Apr 2026 01:39:30 +0000
"`config(panels): Set default dock positions for UI panels`"
success to copy to clip
Diffstat:
| M | settings.json | | | 55 | ++++++++++++++++++++++++++++++++++--------------------- |
1 file changed, 34 insertions(+), 21 deletions(-)
diff --git a/settings.json b/settings.json
@@ -7,23 +7,36 @@
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
+ "outline_panel": {
+ "dock": "left",
+ },
+ "project_panel": {
+ "dock": "left",
+ },
+ "collaboration_panel": {
+ "dock": "left",
+ },
+ "git_panel": {
+ "dock": "left",
+ },
"helix_mode": true,
"agent": {
"default_profile": "write",
"default_model": {
"provider": "google",
"model": "gemini-2.5-flash-lite",
- "enable_thinking": true
+ "enable_thinking": true,
},
"favorite_models": [],
- "model_parameters": []
+ "model_parameters": [],
+ "dock": "right",
},
"ui_font_family": "Moralerspace Neon NF",
"buffer_font_weight": 400.0,
"buffer_font_family": "Moralerspace Neon NF",
"telemetry": {
"diagnostics": false,
- "metrics": false
+ "metrics": false,
},
"vim_mode": false,
"icon_theme": "Zed (Default)",
@@ -32,33 +45,33 @@
"theme": {
"mode": "dark",
"light": "One Light",
- "dark": "Dark Pop UI"
+ "dark": "Dark Pop UI",
},
"theme_overrides": {
"Dark Pop UI": {
"syntax": {
"comment": {
"color": "#E5D3B3",
- "font_style": "normal"
+ "font_style": "normal",
},
"comment.doc": {
"color": "#E5D3B3",
- "font_style": "normal"
+ "font_style": "normal",
},
"punctuation.bracket": {
- "color": "#CCCCCCFF"
+ "color": "#CCCCCCFF",
},
"punctuation.delmiter": {
- "color": "#CCCCCCFF"
+ "color": "#CCCCCCFF",
},
"punctuation.list_marker": {
- "color": "#CCCCCCFF"
+ "color": "#CCCCCCFF",
},
"punctuation.special": {
- "color": "#CCCCCCFF"
- }
- }
- }
+ "color": "#CCCCCCFF",
+ },
+ },
+ },
},
"lsp": {
"discord_presence": {
@@ -91,13 +104,13 @@
"large_image": "{base_icons_url}/zed.png",
"large_text": "Zed",
"small_image": "{base_icons_url}/idle.png",
- "small_text": "Idle"
+ "small_text": "Idle",
},
// Rules to disable presence in specific workspaces
"rules": {
"mode": "blacklist", // Can also be "whitelist"
- "paths": ["absolute path"]
+ "paths": ["absolute path"],
},
"git_integration": true,
@@ -106,10 +119,10 @@
"languages": {
"rust": {
"state": "Hacking on {filename}",
- "details": "Rustacean at work"
- }
- }
- }
- }
- }
+ "details": "Rustacean at work",
+ },
+ },
+ },
+ },
+ },
}