aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorzhangwwpeng <133727312+zhangwwpeng@users.noreply.github.com>2024-06-24 00:36:01 +0800
committerGitHub <noreply@github.com>2024-06-23 18:36:01 +0200
commitb5b64ac9fb544421250f6c581c0e43c886f3f7fa (patch)
tree159029d6fd172658ec6bf37d346c865f2351247c /lua
parentfix(latex): correct lockfile hash (diff)
downloadnvim-treesitter-b5b64ac9fb544421250f6c581c0e43c886f3f7fa.tar
nvim-treesitter-b5b64ac9fb544421250f6c581c0e43c886f3f7fa.tar.gz
nvim-treesitter-b5b64ac9fb544421250f6c581c0e43c886f3f7fa.tar.bz2
nvim-treesitter-b5b64ac9fb544421250f6c581c0e43c886f3f7fa.tar.lz
nvim-treesitter-b5b64ac9fb544421250f6c581c0e43c886f3f7fa.tar.xz
nvim-treesitter-b5b64ac9fb544421250f6c581c0e43c886f3f7fa.tar.zst
nvim-treesitter-b5b64ac9fb544421250f6c581c0e43c886f3f7fa.zip
feat: add systemverilog support (#6775)
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index da2b2f6fa..16a425168 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -34,7 +34,6 @@ for ft, lang in pairs {
html_tags = "html",
["typescript.tsx"] = "tsx",
["html.handlebars"] = "glimmer",
- systemverilog = "verilog",
pandoc = "markdown",
rmd = "markdown",
quarto = "markdown",
@@ -2040,6 +2039,14 @@ list.systemtap = {
maintainers = { "@ok-ryoko" },
}
+list.systemverilog = {
+ install_info = {
+ url = "https://github.com/zhangwwpeng/tree-sitter-systemverilog",
+ files = { "src/parser.c" },
+ },
+ maintainers = { "@zhangwwpeng" },
+}
+
list.t32 = {
install_info = {
url = "https://gitlab.com/xasc/tree-sitter-t32.git",