diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2022-12-25 17:40:05 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-12-31 15:19:48 +0100 |
| commit | 817531ce6f0c7a6236e08aec435e9655e5835afb (patch) | |
| tree | 85966acc6555d9407acda6edafd6297db9c8a473 /lua | |
| parent | fix: show errors when reload after installation fails (diff) | |
| download | nvim-treesitter-817531ce6f0c7a6236e08aec435e9655e5835afb.tar nvim-treesitter-817531ce6f0c7a6236e08aec435e9655e5835afb.tar.gz nvim-treesitter-817531ce6f0c7a6236e08aec435e9655e5835afb.tar.bz2 nvim-treesitter-817531ce6f0c7a6236e08aec435e9655e5835afb.tar.lz nvim-treesitter-817531ce6f0c7a6236e08aec435e9655e5835afb.tar.xz nvim-treesitter-817531ce6f0c7a6236e08aec435e9655e5835afb.tar.zst nvim-treesitter-817531ce6f0c7a6236e08aec435e9655e5835afb.zip | |
parsers: add wgsl_bevy
This adds an extension of tree-sitter-wgsl that understands
[Bevy's](https://bevyengine.org/) preprocessor directives.
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 6bd94f93b..0194f776c 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1183,6 +1183,15 @@ list.wgsl = { filetype = "wgsl", } +list.wgsl_bevy = { + install_info = { + url = "https://github.com/theHamsta/tree-sitter-wgsl-bevy", + files = { "src/parser.c" }, + generate_requires_npm = true, + }, + maintainers = { "@theHamsta" }, +} + list.m68k = { install_info = { url = "https://github.com/grahambates/tree-sitter-m68k", |
