aboutsummaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-09-03 02:03:34 +0000
committerBlaž Hrastnik2021-09-03 02:03:34 +0000
commit4c410eef8720db0c92f39a050c4c5658636013fa (patch)
treeff0bc8dc19ac321675736a7e18ef8ca7aa95d414 /languages.toml
parent9c64650a26cf03207f93c9eeddbafb12edccbf6e (diff)
parent7e1123680f474bff5113db189f63ca7f948781a5 (diff)
Merge remote-tracking branch 'origin/master' into debug
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml33
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"