config.toml

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