aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorTim Culverhouse <tim@timculverhouse.com>2024-09-09 09:50:54 -0500
committerChristian Clason <c.clason@uni-graz.at>2024-10-06 11:47:42 +0200
commit1bcdd79088f9ecca42090f41dd77c1a9b35578ff (patch)
tree33cba2c33abb968ff5af37e666993975f6a5f29c /lua
parentbot(lockfile): update latex, nix, ruby (diff)
downloadnvim-treesitter-1bcdd79088f9ecca42090f41dd77c1a9b35578ff.tar
nvim-treesitter-1bcdd79088f9ecca42090f41dd77c1a9b35578ff.tar.gz
nvim-treesitter-1bcdd79088f9ecca42090f41dd77c1a9b35578ff.tar.bz2
nvim-treesitter-1bcdd79088f9ecca42090f41dd77c1a9b35578ff.tar.lz
nvim-treesitter-1bcdd79088f9ecca42090f41dd77c1a9b35578ff.tar.xz
nvim-treesitter-1bcdd79088f9ecca42090f41dd77c1a9b35578ff.tar.zst
nvim-treesitter-1bcdd79088f9ecca42090f41dd77c1a9b35578ff.zip
feat(superhtml): add superhtml parser and queries
SuperHTML is a templating language used by the zine static site generator.
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 877635967..b5853c04f 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -2109,6 +2109,18 @@ list.supercollider = {
maintainers = { "@madskjeldgaard" },
}
+list.superhtml = {
+ install_info = {
+ url = "https://github.com/kristoff-it/superhtml",
+ files = {
+ "src/parser.c",
+ "src/scanner.c",
+ },
+ location = "tree-sitter-superhtml",
+ },
+ maintainers = { "@rockorager" },
+}
+
list.surface = {
install_info = {
url = "https://github.com/connorlay/tree-sitter-surface",