diff options
| author | Gabriele Musco <gabmus@disroot.org> | 2022-09-11 09:48:25 +0200 |
|---|---|---|
| committer | Lewis Russell <me@lewisr.dev> | 2022-09-12 10:54:58 +0100 |
| commit | 3c2d63c118f89215dd6dc8635c52c55bef5f3fce (patch) | |
| tree | bf197ebf1e3e5d031d7f8c785af15405ba336416 /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-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.lua | 9 |
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, |
