Right now this is just used for two things: * Specifying folders for locarting parsers to use with `tree-sitter parse` and `tree-sitter highlight` * Specifying colors to use for `tree-sitter-highlight`
13 lines
188 B
Rust
13 lines
188 B
Rust
pub mod config;
|
|
pub mod error;
|
|
pub mod generate;
|
|
pub mod highlight;
|
|
pub mod loader;
|
|
pub mod logger;
|
|
pub mod parse;
|
|
pub mod properties;
|
|
pub mod test;
|
|
pub mod util;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|