Skip to content

Commit

Permalink
docs: Fix project_panel setting defaults (zed-industries#15358)
Browse files Browse the repository at this point in the history
This PR fixes the defaults for the `project_panel` setting shown in the
docs.

Release Notes:

- N/A
  • Loading branch information
maxdeviant authored Jul 27, 2024
1 parent 58755a6 commit fee49fc
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions docs/src/configuring-zed.md
Original file line number Diff line number Diff line change
Expand Up @@ -1569,20 +1569,22 @@ Run the `theme selector: toggle` action in the command palette to see a current
- Default:

```json
"project_panel": {
"button": true,
"dock": "left",
"git_status": true,
"default_width": "N/A - width in pixels",
"auto_reveal_entries": true,
"auto_fold_dirs": false,
"file_icons": true,
"folder_icons": true,
"indent_size" : 20,
"scrollbar": {
"show": "always"
{
"project_panel": {
"button": true,
"default_width": 240,
"dock": "left",
"file_icons": true,
"folder_icons": true,
"git_status": true,
"indent_size": 20,
"auto_reveal_entries": true,
"auto_fold_dirs": true,
"scrollbar": {
"show": "always"
}
}
},
}
```

### Dock
Expand Down

0 comments on commit fee49fc

Please sign in to comment.