Fork of zed-extensions/superhtml
  • Rust 78.4%
  • Tree-sitter Query 21.6%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
zed-zippy[bot] fee8816215
Update CI workflows to 3183c04 (#15)
Co-authored-by: zed-zippy[bot] <234243425+zed-zippy[bot]@users.noreply.github.com>
2026-03-25 18:55:23 +00:00
.github/workflows Update CI workflows to 3183c04 (#15) 2026-03-25 18:55:23 +00:00
languages/superhtml Add SuperHTML language support (#3) 2025-10-28 19:52:58 -04:00
src create a superhtml zed extension 2024-10-01 12:39:53 +03:00
.gitignore create a superhtml zed extension 2024-10-01 12:39:53 +03:00
Cargo.lock create a superhtml zed extension 2024-10-01 12:39:53 +03:00
Cargo.toml create a superhtml zed extension 2024-10-01 12:39:53 +03:00
extension.toml Add SuperHTML language support (#3) 2025-10-28 19:52:58 -04:00
LICENSE create a superhtml zed extension 2024-10-01 12:39:53 +03:00
README.md Add SuperHTML language support (#3) 2025-10-28 19:52:58 -04:00

SuperHTML support for Zed

This extension provides support for the SuperHTML language and LSP.

Installation

  1. Install extension
  2. Add the following to your settings.json:
{
  "languages": {
    "HTML": {
      "language_servers": ["vscode-html-language-server", "superhtml"],
      "formatter": { "language_server": { "name": "superhtml" } }
    }
  }
}