Reenable html, remove emmet due to the lack of the code

Kirill Bulatov created

Change summary

crates/zed/src/languages.rs | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

Detailed changes

crates/zed/src/languages.rs 🔗

@@ -118,8 +118,7 @@ pub fn init(languages: Arc<LanguageRegistry>, node_runtime: Arc<NodeRuntime>) {
         "html",
         tree_sitter_html::language(),
         vec![
-            // Arc::new(html::HtmlLspAdapter::new(node_runtime.clone())),
-            // Arc::new(emmet::EmmetLspAdapter::new(node_runtime.clone())),
+            Arc::new(html::HtmlLspAdapter::new(node_runtime.clone())),
             Arc::new(tailwind::TailwindLspAdapter::new(node_runtime.clone())),
         ],
     );