1# Dart
2
3Dart support is available through the [Dart extension](https://github.com/zed-extensions/dart).
4
5- Tree Sitter: [UserNobody14/tree-sitter-dart](https://github.com/UserNobody14/tree-sitter-dart)
6- Language Server: [dart language-server](https://github.com/dart-lang/sdk)
7
8## Configuration
9
10The `dart` binary can be configured in a Zed settings file with:
11
12```json
13{
14 "lsp": {
15 "dart": {
16 "binary": {
17 "path": "/opt/homebrew/bin/fvm",
18 "arguments": ["dart", "language-server", "--protocol=lsp"]
19 }
20 }
21 }
22}
23```
24
25<!--
26TBD: Document Dart. pubspec.yaml
27- https://github.com/dart-lang/sdk/blob/main/pkg/analysis_server/tool/lsp_spec/README.md
28-->