diff options
| author | Beartama <8091245+uyha@users.noreply.github.com> | 2023-09-10 14:38:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-10 08:38:10 -0400 |
| commit | 4c1a76ec236838a101e921ee349a47f323502092 (patch) | |
| tree | acd1ed0fc9b3d3109c6fbdcd7a663b7dc544f3ef /lua | |
| parent | fix(julia): fix highlighting `end` keyword (diff) | |
| download | nvim-treesitter-4c1a76ec236838a101e921ee349a47f323502092.tar nvim-treesitter-4c1a76ec236838a101e921ee349a47f323502092.tar.gz nvim-treesitter-4c1a76ec236838a101e921ee349a47f323502092.tar.bz2 nvim-treesitter-4c1a76ec236838a101e921ee349a47f323502092.tar.lz nvim-treesitter-4c1a76ec236838a101e921ee349a47f323502092.tar.xz nvim-treesitter-4c1a76ec236838a101e921ee349a47f323502092.tar.zst nvim-treesitter-4c1a76ec236838a101e921ee349a47f323502092.zip | |
feat: add EDS
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 460ccea18..6fc18cbf9 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -403,6 +403,14 @@ list.ebnf = { experimental = true, } +list.eds = { + install_info = { + url = "https://github.com/uyha/tree-sitter-eds", + files = { "src/parser.c" }, + }, + maintainers = { "@uyha" }, +} + list.eex = { install_info = { url = "https://github.com/connorlay/tree-sitter-eex", |
