Go to file
2023-08-28 14:20:19 -04:00
bindings Initial commit 2023-08-22 17:02:40 -04:00
corpus Resolve grammar bugs; Pass tests 2023-08-24 12:53:42 -04:00
src Fix highlights; Improve example 2023-08-24 13:15:11 -04:00
.gitignore Add example; Fix config 2023-08-22 19:56:12 -04:00
binding.gyp Initial commit 2023-08-22 17:02:40 -04:00
Cargo.lock Add example; Fix config 2023-08-22 19:56:12 -04:00
Cargo.toml Fix typo 2023-08-22 19:59:15 -04:00
example.dust Fix highlights; Improve example 2023-08-24 13:15:11 -04:00
grammar.js Clean up 2023-08-24 13:01:12 -04:00
highlights.scm Fix highlights; Improve example 2023-08-24 13:15:11 -04:00
package-lock.json Initial commit 2023-08-22 17:02:40 -04:00
package.json Add example; Fix config 2023-08-22 19:56:12 -04:00
README.md Write README 2023-08-28 14:20:19 -04:00

tree-sitter-dust

Tree sitter implementation for the Dust programming language.

This repository is used to enable sytax highlighting and other developer-friendly features for Dust. To use this repository with Helix, clone it and add the following to your languages.toml file.

[[language]]
name = "dust"
scope = "source.dust"
injection-regex = "dust"
file-types = ["ds", "dust"]
roots = [".git"]
comment-token = "#"
grammar = "dust"

[[grammar]]
name = "dust"
source.path = "/path/to/tree-sitter-dust"