diff options
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index 7164c4df..c04435fe 100644 --- a/languages.toml +++ b/languages.toml @@ -225,6 +225,23 @@ comment-token = ";" indent = { tab-width = 4, unit = " " } [[language]] +name = "ocaml" +scope = "source.ocaml" +injection-regex = "ocaml" +file-types = ["ml"] +roots = [] +comment-token = "(**)" +indent = { tab-width = 2, unit = " " } + +[[language]] +name = "ocaml-interface" +scope = "source.ocaml.interface" +file-types = ["mli"] +roots = [] +comment-token = "(**)" +indent = { tab-width = 2, unit = " "} + +[[language]] name = "lua" scope = "source.lua" file-types = ["lua"] |