Move Zed project panel to left | Generated by AI

Home 2026.07

Question: How do I move the file (project) panel in Zed editor from the right side to the left side?

Answer:

Fastest way — no config editing:

Direct way — edit settings.json:

# Cmd+, opens settings, or edit the file directly:
vim ~/.config/zed/settings.json

Add/edit this key:

{
  "project_panel": {
    "dock": "left"
  }
}

Save, and Zed hot-reloads settings immediately — no restart needed.

Notes specific to your setup:

Quick reference config block if you want project panel + git panel both pinned left:

{
  "project_panel": { "dock": "left" },
  "git_panel": { "dock": "left" },
  "outline_panel": { "dock": "right" }
}

References:


Back Donate