diff options
| author | Lewis Russell <lewis6991@gmail.com> | 2021-12-14 10:47:47 +0000 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-12-14 14:59:38 +0100 |
| commit | 567c644e5372d661ed36937ce7db6dc7155d97d1 (patch) | |
| tree | 9ed0e4c0e97d03bbc027b24085536dc11bcd1eab /lua/nvim-treesitter | |
| parent | 225cac5e6b762bf5223d96df20d4b2ff658f5f34 (diff) | |
feat(lang): add make
Diffstat (limited to 'lua/nvim-treesitter')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 9bf46ec4..a757fdd1 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -791,6 +791,7 @@ list.http = { }, maintainers = { "@NTBBloodbath" }, } + list.prisma = { install_info = { url = "https://github.com/victorhqc/tree-sitter-prisma", @@ -800,6 +801,15 @@ list.prisma = { maintainers = { "@elianiva" }, } +list.make = { + install_info = { + url = "https://github.com/alemuller/tree-sitter-make", + branch = "main", + files = { "src/parser.c" }, + }, + maintainers = { "@lewis6991" }, +} + local M = { list = list, } |
