From 6cc83ef738acff26094e056c2f96ff7395c22ef0 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Sun, 8 Dec 2024 18:15:43 -0600 Subject: [PATCH] editor: Use Prettier for formatting within Zed --- .zed/settings.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .zed/settings.json diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..ab15369 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,12 @@ +{ + "languages": { + "HTML": { + "formatter": { + "external": { + "command": "prettier", + "arguments": ["--stdin-filepath", "{buffer_path}"] + } + } + } + } +}