bindings | ||
corpus | ||
examples | ||
src | ||
tests | ||
.gitignore | ||
.gitmodules | ||
binding.gyp | ||
Cargo.lock | ||
Cargo.toml | ||
example.dust | ||
grammar.js | ||
highlights.scm | ||
package-lock.json | ||
package.json | ||
README.md |
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"