aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorGabriele Musco <gabmus@disroot.org>2022-09-11 09:48:25 +0200
committerLewis Russell <me@lewisr.dev>2022-09-12 10:54:58 +0100
commit3c2d63c118f89215dd6dc8635c52c55bef5f3fce (patch)
treebf197ebf1e3e5d031d7f8c785af15405ba336416 /lua
parentUpdate lockfile.json (diff)
downloadnvim-treesitter-3c2d63c118f89215dd6dc8635c52c55bef5f3fce.tar
nvim-treesitter-3c2d63c118f89215dd6dc8635c52c55bef5f3fce.tar.gz
nvim-treesitter-3c2d63c118f89215dd6dc8635c52c55bef5f3fce.tar.bz2
nvim-treesitter-3c2d63c118f89215dd6dc8635c52c55bef5f3fce.tar.lz
nvim-treesitter-3c2d63c118f89215dd6dc8635c52c55bef5f3fce.tar.xz
nvim-treesitter-3c2d63c118f89215dd6dc8635c52c55bef5f3fce.tar.zst
nvim-treesitter-3c2d63c118f89215dd6dc8635c52c55bef5f3fce.zip
parsers: add blueprint parser
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 208ae189b..ad63b21c1 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -1224,6 +1224,15 @@ list.gitattributes = {
experimental = true,
}
+list.blueprint = {
+ install_info = {
+ url = "https://gitlab.com/gabmus/tree-sitter-blueprint.git",
+ files = { "src/parser.c" },
+ },
+ maintainers = { "@gabmus" },
+ experimental = true,
+}
+
local M = {
list = list,
filetype_to_parsername = filetype_to_parsername,