aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
author巢鹏 <chaopeng@chaopeng.me>2024-02-22 21:57:07 -0500
committerGitHub <noreply@github.com>2024-02-23 11:57:07 +0900
commita8d2b54e28b25cbea1a5fae312165f56674168de (patch)
tree1ffac806962b419cc692558f3a7fc910232b63ee /lua
parentfeat(c-sharp): add enum member declaration highlight query (diff)
downloadnvim-treesitter-a8d2b54e28b25cbea1a5fae312165f56674168de.tar
nvim-treesitter-a8d2b54e28b25cbea1a5fae312165f56674168de.tar.gz
nvim-treesitter-a8d2b54e28b25cbea1a5fae312165f56674168de.tar.bz2
nvim-treesitter-a8d2b54e28b25cbea1a5fae312165f56674168de.tar.lz
nvim-treesitter-a8d2b54e28b25cbea1a5fae312165f56674168de.tar.xz
nvim-treesitter-a8d2b54e28b25cbea1a5fae312165f56674168de.tar.zst
nvim-treesitter-a8d2b54e28b25cbea1a5fae312165f56674168de.zip
feat: add fidl parser
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 324529cad..bd647d595 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -535,6 +535,15 @@ list.fennel = {
maintainers = { "@alexmozaidze" },
}
+list.fidl = {
+ install_info = {
+ url = "https://github.com/google/tree-sitter-fidl",
+ files = { "src/parser.c" },
+ requires_generate_from_grammar = true,
+ },
+ maintainers = { "@chaopeng" },
+}
+
list.firrtl = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-firrtl",