aboutsummaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authorJared Ramirez2022-04-14 18:26:20 +0000
committerGitHub2022-04-14 18:26:20 +0000
commit460e6a857b44a2492c5c8888a3985ec413393300 (patch)
tree1e19cb6e55d8cf5909062151a26773ce19b8866b /languages.toml
parent764adbdcf6f0a5615d1ddd3abb7ed7b9cf0f2d92 (diff)
feat(languages): SQL (#2097)
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml13
1 files changed, 13 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml
index 7f2a17ab..d3a21c2d 100644
--- a/languages.toml
+++ b/languages.toml
@@ -1137,3 +1137,16 @@ indent = { tab-width = 2, unit = " " }
[[grammar]]
name = "heex"
source = { git = "https://github.com/connorlay/tree-sitter-heex", rev = "592e22292a367312c35e13de7fdb888f029981d6" }
+
+[[language]]
+name = "sql"
+scope = "source.sql"
+file-types = ["sql"]
+roots = []
+comment-token = "--"
+indent = { tab-width = 4, unit = " " }
+injection-regex = "sql"
+
+[[grammar]]
+name = "sql"
+source = { git = "https://github.com/DerekStride/tree-sitter-sql", rev = "0caa7fa2ee00e0b770493a79d4efacc1fc376cc5" }