docs: Add example of TOML/taplo LSP settings (#18293)

Peter Tripp created

Change summary

docs/src/languages/toml.md | 12 ++++++++++++
1 file changed, 12 insertions(+)

Detailed changes

docs/src/languages/toml.md 🔗

@@ -18,3 +18,15 @@ include = ["Cargo.toml", "some_directory/**/*.toml"]
 align_entries = true
 reorder_keys = true
 ```
+
+Alternatively, you can pass taplo configuration options via [Zed LSP Settings](../configuring-zed.md#lsp)
+
+```json
+  "lsp": {
+    "taplo": {
+      "settings": {
+        "array_auto_collapse": false
+      }
+    }
+  }
+```