From f9634f6865caa1e574330c6f2144221c31935f13 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 30 Mar 2026 04:47:08 +0200 Subject: [PATCH] fix: add Vue LSP settings and disable Biome in Zed project config --- .zed/settings.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.zed/settings.json b/.zed/settings.json index 0c6891e7..a4f01370 100644 --- a/.zed/settings.json +++ b/.zed/settings.json @@ -5,6 +5,7 @@ // JSON, JSONC, Markdown, YAML, CSS, HTML: Prettier { "format_on_save": "on", + "language_servers": ["!biome", "..."], "languages": { // ── TypeScript (covers .ts and .tsx) ────────────────────── @@ -58,6 +59,14 @@ "mode": "auto" } } + }, + "vue": { + "settings": { + "vue.inlayHints.inlineHandlerLeading": true, + "vue.inlayHints.missingProps": true, + "vue.inlayHints.optionsWrapper": true, + "vue.inlayHints.vBindShorthand": true + } } } } -- 2.53.0