diff options
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index 5a42d7a4..234b1313 100644 --- a/languages.toml +++ b/languages.toml @@ -2355,3 +2355,17 @@ indent = { tab-width = 2, unit = " " } [[grammar]] name = "capnp" source = { git = "https://github.com/amaanq/tree-sitter-capnp", rev = "fc6e2addf103861b9b3dffb82c543eb6b71061aa" } + +[[language]] +name = "smithy" +scope = "source.smithy" +injection-regex = "smithy" +file-types = ["smithy"] +roots = ["smithy-build.json"] +comment-token = "//" +indent = { tab-width = 4, unit = " " } +language-server = { command = "cs", args = ["launch", "com.disneystreaming.smithy:smithy-language-server:latest.release", "--", "0"] } + +[[grammar]] +name = "smithy" +source = { git = "https://github.com/indoorvivants/tree-sitter-smithy", rev = "cf8c7eb9faf7c7049839585eac19c94af231e6a0" } |