config.toml
1name = "OCaml Interface"
2code_fence_block_name = "ocaml"
3grammar = "ocaml_interface"
4path_suffixes = ["mli"]
5block_comment = ["(* ", "*)"]
6autoclose_before = ";,=)}"
7brackets = [
8 { start = "{", end = "}", close = true, newline = true },
9 { start = "<", end = ">", close = true, newline = true },
10 { start = "[", end = "]", close = true, newline = true },
11 { start = "(", end = ")", close = true, newline = true }
12]
13tab_size = 2