From 0e227a6678a18a4988c7909328ea99e7d4a7c915 Mon Sep 17 00:00:00 2001 From: tims <0xtimsb@gmail.com> Date: Tue, 10 Dec 2024 12:48:12 +0530 Subject: [PATCH] doc fix --- docs/src/languages/astro.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/src/languages/astro.md b/docs/src/languages/astro.md index a3c17e268f..54bd6bc9ad 100644 --- a/docs/src/languages/astro.md +++ b/docs/src/languages/astro.md @@ -7,7 +7,7 @@ Astro support is available through the [Astro extension](https://github.com/zed- ## Astro Configuration -To use the Astro Language Server with TypeScript and TSX files, you will likely wish to to disable the default language servers and enable deno by adding the following to your settings.json: +To enable importing Astro files in TypeScript and TSX files, you will likely wish to disable the default language servers by adding the following to your settings.json: ```jsonc { @@ -17,18 +17,18 @@ To use the Astro Language Server with TypeScript and TSX files, you will likely "astro-typescript", "!typescript-language-server", "!vtsls", - "!eslint" - ] + "!eslint", + ], }, "TSX": { "language_servers": [ "astro-typescript", "!typescript-language-server", "!vtsls", - "!eslint" - ] - } - } + "!eslint", + ], + }, + }, } ```