Get basic syntax highlighting for Haskell working

This commit is contained in:
Pseudomata 2024-01-24 18:08:47 -05:00
parent 10437794e4
commit 02ab16037c
No known key found for this signature in database
9 changed files with 189 additions and 0 deletions

View file

@ -13,6 +13,7 @@ mod c;
mod css;
mod elixir;
mod go;
mod haskell;
mod html;
mod json;
#[cfg(feature = "plugin_runtime")]
@ -160,6 +161,7 @@ pub fn init(
Arc::new(tailwind::TailwindLspAdapter::new(node_runtime.clone())),
],
);
language("haskell", tree_sitter_haskell::language(), vec![]);
language(
"html",
tree_sitter_html::language(),