Go to file
Jeff 2f9590e006 Implement filter loop 2023-10-17 17:52:23 -04:00
corpus Implement filter loop 2023-10-17 17:52:23 -04:00
src Implement filter loop 2023-10-17 17:52:23 -04:00
.gitignore Add simple rust library 2023-09-25 05:57:08 -04:00
.gitmodules Add dust project as a submodule 2023-09-28 13:43:30 -04:00
Cargo.lock Implement new grammar 2023-10-09 14:39:47 -04:00
Cargo.toml Implement new grammar 2023-10-09 14:39:47 -04:00
README.md Write README 2023-08-28 14:20:19 -04:00
grammar.js Implement filter loop 2023-10-17 17:52:23 -04:00
highlights.scm Fix highlights; Improve example 2023-08-24 13:15:11 -04:00
package-lock.json Add simple rust library 2023-09-25 05:57:08 -04:00
package.json Set license 2023-10-01 04:29:18 -04:00

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"