diff options
| author | Clay <connorlay@users.noreply.github.com> | 2022-01-25 08:52:51 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-25 16:52:51 +0000 |
| commit | 2532937ba1cf22d6d3523e6a3008c58a03452364 (patch) | |
| tree | c9c54ca6aefc7e980a7ccbf5c3b87a727ad61f2a /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-2532937ba1cf22d6d3523e6a3008c58a03452364.tar nvim-treesitter-2532937ba1cf22d6d3523e6a3008c58a03452364.tar.gz nvim-treesitter-2532937ba1cf22d6d3523e6a3008c58a03452364.tar.bz2 nvim-treesitter-2532937ba1cf22d6d3523e6a3008c58a03452364.tar.lz nvim-treesitter-2532937ba1cf22d6d3523e6a3008c58a03452364.tar.xz nvim-treesitter-2532937ba1cf22d6d3523e6a3008c58a03452364.tar.zst nvim-treesitter-2532937ba1cf22d6d3523e6a3008c58a03452364.zip | |
Add tree-sitter-eex parser for (L)EEx files (#2351)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index cb9955850..a2d030c27 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -343,6 +343,16 @@ list.surface = { maintainers = { "@connorlay" }, } +list.eex = { + install_info = { + url = "https://github.com/connorlay/tree-sitter-eex", + files = { "src/parser.c" }, + branch = "main", + }, + filetype = "eex", + maintainers = { "@connorlay" }, +} + list.heex = { install_info = { url = "https://github.com/connorlay/tree-sitter-heex", |
