diff options
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index d028f92c..1a557943 100644 --- a/languages.toml +++ b/languages.toml @@ -312,6 +312,39 @@ roots = [] 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"] +roots = [] +comment-token = "--" +indent = { tab-width = 2, unit = " " } + +[[language]] +name = "yaml" +scope = "source.yaml" +file-types = ["yml", "yaml"] +roots = [] +comment-token = "#" +indent = { tab-width = 2, unit = " " } + # [[language]] # name = "haskell" # scope = "source.haskell" |