I tried installing biome but can't get it to work in Zed.
I opened a issue on Zed about this which turned out to be wrong -
I read /reference/zed/#installation & I'm confused as to where the <path>
comes from.
What I want is a global formatter, not a project specific one.
Here's what I did:
- Install biome from Zed Extension Store
- Add the following to
settings.json
"formatter": {
"language_server": {
"name": "biome"
}
},
"code_actions_on_format": {
"source.fixAll.biome": true,
"sourceanizeImports.biome": true
}
This didn't work at all.
My goal is to format on save. I even have this in my settings.json
file.
"format_on_save": "on",
"languages": {
"Markdown": {
"format_on_save": "on"
}
}
But doesn't help at all.
What to do? There's no resources on this.