aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2022-12-25 17:40:05 +0100
committerStephan Seitz <stephan.seitz@fau.de>2022-12-31 15:19:48 +0100
commit817531ce6f0c7a6236e08aec435e9655e5835afb (patch)
tree85966acc6555d9407acda6edafd6297db9c8a473 /lua
parentfix: show errors when reload after installation fails (diff)
downloadnvim-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.lua9
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",