aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 8fe4225e0..6d444cde1 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -18,6 +18,7 @@ local filetype_to_parsername = {
pandoc = "markdown",
rmd = "markdown",
cs = "c_sharp",
+ tape = "vhs",
}
---@class InstallInfo
@@ -1282,6 +1283,16 @@ list.diff = {
filetype = "gitdiff",
}
+list.vhs = {
+ install_info = {
+ url = "https://github.com/charmbracelet/tree-sitter-vhs",
+ branch = "main",
+ files = { "src/parser.c" },
+ },
+ maintainers = { "@caarlos0", "@maaslalani" },
+ filetype = "tape",
+}
+
local M = {
list = list,
filetype_to_parsername = filetype_to_parsername,