diff options
| author | Stefan Wienert <info@stefanwienert.de> | 2021-07-10 17:36:49 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-11-30 23:40:49 +0100 |
| commit | dec2ba27a8a64ac2e3e65d961561893052e36782 (patch) | |
| tree | cda7efc6cf360d3701ddbd82545bfabda62a464a /lua/nvim-treesitter/parsers.lua | |
| parent | 81d4077fa0f414464bcb2aaff24a45e5da9c697f (diff) | |
Feat: Added Pug parser with inital queries
Diffstat (limited to 'lua/nvim-treesitter/parsers.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 a9dce65b..12a86379 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -470,6 +470,15 @@ list.glimmer = { used_by = { "html.handlebars" }, } +list.pug = { + install_info = { + url = "https://github.com/zealot128/tree-sitter-pug", + files = { "src/parser.c", "src/scanner.cc" }, + }, + maintainers = { "@zealot128" }, + filetype = "pug", +} + list.vue = { install_info = { url = "https://github.com/ikatyang/tree-sitter-vue", |
