Add tree-sitter-glsl

This commit is contained in:
Quinn Wilton 2023-07-23 16:43:44 -07:00
parent a4914fcf3b
commit dd504f5965
No known key found for this signature in database
6 changed files with 140 additions and 0 deletions

View file

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