aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorGodOfAvacyn <59858208+GodOfAvacyn@users.noreply.github.com>2024-02-29 02:30:33 -0800
committerGitHub <noreply@github.com>2024-02-29 11:30:33 +0100
commit06b5fda797ea4c363e9fe17b160c33818be8d319 (patch)
treed365a0a931ac102e60fb41b14e14cdd0b2547026 /lua
parentUpdate parsers: chatito, gitattributes, gitcommit, gpg, groovy, hlsl, mermaid... (diff)
downloadnvim-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.lua9
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",