Skip to content

Commit 4edccb6

Browse files
committed
Add Zed extension to website
1 parent 273b3b8 commit 4edccb6

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

duper_website/docs/.vitepress/config.mts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ export default async () => {
8585
},
8686
{
8787
text: "Editor support",
88-
items: [{ text: "Visual Studio Code", link: "/tools/vs-code" }],
88+
items: [
89+
{ text: "Visual Studio Code", link: "/tools/vs-code" },
90+
{ text: "Zed", link: "/tools/zed" },
91+
],
8992
},
9093
{
9194
text: "Tools",

duper_website/docs/tools/zed.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Zed support
2+
3+
Duper is available as [an extension for Zed](https://zed.dev/extensions/duper), with syntax highlighting, full LSP support, validation, and auto-formatting.
4+
5+
In order to enable formatting via the LSP, add the following entry to `settings.json`:
6+
7+
```json
8+
{
9+
"languages": {
10+
"Duper": {
11+
"formatter": "language_server"
12+
}
13+
}
14+
}
15+
```

0 commit comments

Comments
 (0)