xml.md

 1---
 2title: XML
 3description: "Configure XML language support in Zed, including language servers, formatting, and debugging."
 4---
 5
 6# XML
 7
 8XML support is available through the [XML extension](https://github.com/sweetppro/zed-xml/).
 9
10- Tree-sitter: [tree-sitter-grammars/tree-sitter-xml](https://github.com/tree-sitter-grammars/tree-sitter-xml)
11
12## Configuration
13
14If you have additional file extensions that are not being automatically recognized as XML just add them to [file_types](../reference/all-settings.md#file-types) in your Zed settings:
15
16```json [settings]
17  "file_types": {
18    "XML": ["rdf", "gpx", "kml"]
19  }
20```