xml.md

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