diff options
| author | 巢鹏 <chaopeng@chaopeng.me> | 2024-02-22 21:57:07 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-23 11:57:07 +0900 |
| commit | a8d2b54e28b25cbea1a5fae312165f56674168de (patch) | |
| tree | 1ffac806962b419cc692558f3a7fc910232b63ee /lua | |
| parent | feat(c-sharp): add enum member declaration highlight query (diff) | |
| download | nvim-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.lua | 9 |
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", |
