diff options
author | VuiMuich | 2022-04-05 12:39:22 +0000 |
---|---|---|
committer | GitHub | 2022-04-05 12:39:22 +0000 |
commit | eb84d9493cc09bf27ae9c9e0dba79be3bb743e08 (patch) | |
tree | 2dbebd332b55688ac5bddb003dfd23a520d0c43a /languages.toml | |
parent | 6b80cb8a7750885abf761d1b65e5c0065ae1640b (diff) |
add language `ron` (#1925)
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index 0220c33b..d81d0373 100644 --- a/languages.toml +++ b/languages.toml @@ -1028,3 +1028,13 @@ indent = { tab-width = 2, unit = " " } [[grammar]] name = "gleam" source = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "7159ce961592192b0e7cdf88782cda0fdf41a4cb" } + +[[language]] +name = "ron" +scope = "source.ron" +injection-regex = "ron" +file-types = ["ron"] +roots = [] +comment-token = "//" +indent = { tab-width = 4, unit = " " } +grammar = "rust" |