zed/extensions/ocaml/languages/dune/config.toml
Stanislav Alekseev 10cfaecffa
ocaml: Add Dune language support (#17886)
This uses my fork of the dune tree-sitter grammar to include the
generated files

Release Notes:

- N/A
2024-09-17 11:28:03 -04:00

8 lines
243 B
TOML

name = "Dune"
grammar = "dune"
path_suffixes = ["dune", "dune-project"]
brackets = [
{ start = "(", end = ")", close = true, newline = true },
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] }
]
tab_size = 2