diff options
author | zetashift | 2022-03-20 22:14:30 +0000 |
---|---|---|
committer | GitHub | 2022-03-20 22:14:30 +0000 |
commit | 7eb013c6fb33df40b2fae31c9d08f7da275cd963 (patch) | |
tree | c558ee9e8534f7eaa13ed76c7f6b9ce7735680fb /languages.toml | |
parent | a7ee9f74f771a486f99dca9e7a6084f74f19eb46 (diff) |
Initial basic Org markup support thanks to tree-sitter-org (#1845)
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index 6aa5be3c..5aa1b2c8 100644 --- a/languages.toml +++ b/languages.toml @@ -976,3 +976,15 @@ auto-format = true [[grammar]] name = "hcl" source = { git = "https://github.com/MichaHoffmann/tree-sitter-hcl", rev = "3cb7fc28247efbcb2973b97e71c78838ad98a583" } + +[[language]] +name = "org" +scope = "source.org" +injection-regex = "org" +file-types = ["org"] +roots = [] +indent = { tab-width = 2, unit = " " } + +[[grammar]] +name = "org" +source = { git = "https://github.com/milisims/tree-sitter-org", rev = "1c3eb533a9cf6800067357b59e03ac3f91fc3a54" } |