Add tree-sitter-nix

This commit is contained in:
Quinn Wilton 2023-07-23 14:39:43 -07:00
parent e0915190d4
commit fe388ed71e
No known key found for this signature in database
6 changed files with 119 additions and 0 deletions

View file

@ -152,6 +152,7 @@ pub fn init(languages: Arc<LanguageRegistry>, node_runtime: Arc<NodeRuntime>) {
tree_sitter_php::language(),
vec![Arc::new(php::IntelephenseLspAdapter::new(node_runtime))],
);
language("nix", tree_sitter_nix::language(), vec![])
}
#[cfg(any(test, feature = "test-support"))]