diff options
| author | GodOfAvacyn <59858208+GodOfAvacyn@users.noreply.github.com> | 2024-02-29 02:30:33 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-29 11:30:33 +0100 |
| commit | 06b5fda797ea4c363e9fe17b160c33818be8d319 (patch) | |
| tree | d365a0a931ac102e60fb41b14e14cdd0b2547026 /lua | |
| parent | Update parsers: chatito, gitattributes, gitcommit, gpg, groovy, hlsl, mermaid... (diff) | |
| download | nvim-treesitter-06b5fda797ea4c363e9fe17b160c33818be8d319.tar nvim-treesitter-06b5fda797ea4c363e9fe17b160c33818be8d319.tar.gz nvim-treesitter-06b5fda797ea4c363e9fe17b160c33818be8d319.tar.bz2 nvim-treesitter-06b5fda797ea4c363e9fe17b160c33818be8d319.tar.lz nvim-treesitter-06b5fda797ea4c363e9fe17b160c33818be8d319.tar.xz nvim-treesitter-06b5fda797ea4c363e9fe17b160c33818be8d319.tar.zst nvim-treesitter-06b5fda797ea4c363e9fe17b160c33818be8d319.zip | |
feat: add support for gdshader (#6153)
Godot shading language
---------
Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
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 aef843213..89102f405 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -619,6 +619,15 @@ list.gdscript = { readme_name = "Godot (gdscript)", } +list.gdshader = { + install_info = { + url = "https://github.com/GodOfAvacyn/tree-sitter-gdshader", + files = { "src/parser.c" }, + }, + filetype = "gdshaderinc", + maintainers = { "@godofavacyn" }, +} + list.git_rebase = { install_info = { url = "https://github.com/the-mikedavis/tree-sitter-git-rebase", |
