diff options
| author | Konrad Bochnia <kbochnia@gmail.com> | 2022-04-11 18:14:04 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-04-11 23:16:19 +0200 |
| commit | 1a58c71b73bdd0a0b71ad3738555b11e21c60dc6 (patch) | |
| tree | 71705e6b70183e66a2e791acbfa00f811932dfe5 /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-1a58c71b73bdd0a0b71ad3738555b11e21c60dc6.tar nvim-treesitter-1a58c71b73bdd0a0b71ad3738555b11e21c60dc6.tar.gz nvim-treesitter-1a58c71b73bdd0a0b71ad3738555b11e21c60dc6.tar.bz2 nvim-treesitter-1a58c71b73bdd0a0b71ad3738555b11e21c60dc6.tar.lz nvim-treesitter-1a58c71b73bdd0a0b71ad3738555b11e21c60dc6.tar.xz nvim-treesitter-1a58c71b73bdd0a0b71ad3738555b11e21c60dc6.tar.zst nvim-treesitter-1a58c71b73bdd0a0b71ad3738555b11e21c60dc6.zip | |
Add WGSL parser
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 58c08c351..0b29dbee9 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1025,6 +1025,15 @@ list.astro = { maintainers = { "@virchau13" }, } +list.wgsl = { + install_info = { + url = "https://github.com/szebniok/tree-sitter-wgsl", + files = { "src/parser.c" }, + }, + maintainers = { "@szebniok" }, + filetype = "wgsl" +} + local M = { list = list, filetype_to_parsername = filetype_to_parsername, |
