Add basic syntax highlighting for CSS

This commit is contained in:
Max Brunsfeld 2022-08-31 11:53:52 -07:00
parent 21fb2b9bf1
commit a2e57e8d71
8 changed files with 111 additions and 2 deletions

View file

@ -47,6 +47,11 @@ pub async fn init(languages: Arc<LanguageRegistry>, _executor: Arc<Background>)
tree_sitter_cpp::language(),
Some(CachedLspAdapter::new(c::CLspAdapter).await),
),
(
"css",
tree_sitter_css::language(),
None, //
),
(
"elixir",
tree_sitter_elixir::language(),