diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2023-11-24 10:25:47 +0100 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2023-11-26 15:24:26 +0100 |
| commit | 1e74c34b668d0bbdd14492fc220974e4fc38dc6b (patch) | |
| tree | 849c90e2e8115a58180a29089655058a92d8fe03 /lua | |
| parent | twig queries: add combined injections (#5721) (diff) | |
| download | nvim-treesitter-1e74c34b668d0bbdd14492fc220974e4fc38dc6b.tar nvim-treesitter-1e74c34b668d0bbdd14492fc220974e4fc38dc6b.tar.gz nvim-treesitter-1e74c34b668d0bbdd14492fc220974e4fc38dc6b.tar.bz2 nvim-treesitter-1e74c34b668d0bbdd14492fc220974e4fc38dc6b.tar.lz nvim-treesitter-1e74c34b668d0bbdd14492fc220974e4fc38dc6b.tar.xz nvim-treesitter-1e74c34b668d0bbdd14492fc220974e4fc38dc6b.tar.zst nvim-treesitter-1e74c34b668d0bbdd14492fc220974e4fc38dc6b.zip | |
feat: add angular parser and queries
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index b012d514a..0c83e58f0 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -93,6 +93,14 @@ list.agda = { maintainers = { "@Decodetalkers" }, } +list.angular = { + install_info = { + url = "https://github.com/steelsojka/tree-sitter-angular", + files = { "src/parser.c" }, + }, + maintainers = {"@steelsojka"} +} + list.apex = { install_info = { url = "https://github.com/aheber/tree-sitter-sfapex", |
