WIP: Add nushell support

This commit is contained in:
Mikayla 2023-09-05 11:01:55 -07:00
parent 7cc05c99c2
commit ef03e206d6
No known key found for this signature in database
8 changed files with 85 additions and 2 deletions

View file

@ -170,6 +170,7 @@ pub fn init(languages: Arc<LanguageRegistry>, node_runtime: Arc<dyn NodeRuntime>
language("elm", tree_sitter_elm::language(), vec![]);
language("glsl", tree_sitter_glsl::language(), vec![]);
language("nix", tree_sitter_nix::language(), vec![]);
language("nu", tree_sitter_nu::language(), vec![]);
}
#[cfg(any(test, feature = "test-support"))]