aboutsummaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authorzetashift2022-03-20 22:14:30 +0000
committerGitHub2022-03-20 22:14:30 +0000
commit7eb013c6fb33df40b2fae31c9d08f7da275cd963 (patch)
treec558ee9e8534f7eaa13ed76c7f6b9ce7735680fb /languages.toml
parenta7ee9f74f771a486f99dca9e7a6084f74f19eb46 (diff)
Initial basic Org markup support thanks to tree-sitter-org (#1845)
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml12
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" }