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 | |
| parent | injections(rust): inject regex into `Regex::new` (diff) | |
| download | nvim-treesitter-567c644e5372d661ed36937ce7db6dc7155d97d1.tar nvim-treesitter-567c644e5372d661ed36937ce7db6dc7155d97d1.tar.gz nvim-treesitter-567c644e5372d661ed36937ce7db6dc7155d97d1.tar.bz2 nvim-treesitter-567c644e5372d661ed36937ce7db6dc7155d97d1.tar.lz nvim-treesitter-567c644e5372d661ed36937ce7db6dc7155d97d1.tar.xz nvim-treesitter-567c644e5372d661ed36937ce7db6dc7155d97d1.tar.zst nvim-treesitter-567c644e5372d661ed36937ce7db6dc7155d97d1.zip | |
feat(lang): add make
Diffstat (limited to 'lua')
| -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 9bf46ec47..a757fdd14 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, } |
