editor: Use Prettier for formatting within Zed

This commit is contained in:
Thomas A. Christensen II 2024-12-08 18:15:43 -06:00
parent 927d3cc160
commit 6cc83ef738
Signed by: millironx
GPG key ID: B7044A3432851F64

12
.zed/settings.json Normal file
View file

@ -0,0 +1,12 @@
{
"languages": {
"HTML": {
"formatter": {
"external": {
"command": "prettier",
"arguments": ["--stdin-filepath", "{buffer_path}"]
}
}
}
}
}