diff options
| author | Nick Pezza <pezza@hey.com> | 2021-12-04 15:58:57 -0500 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-05-05 01:34:59 +0200 |
| commit | bcf091d865df27bbdbdc388338cfc6b78f4734d4 (patch) | |
| tree | a1e1dc4f5c8f9899f2bae4d0002c348d373b19ca /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-bcf091d865df27bbdbdc388338cfc6b78f4734d4.tar nvim-treesitter-bcf091d865df27bbdbdc388338cfc6b78f4734d4.tar.gz nvim-treesitter-bcf091d865df27bbdbdc388338cfc6b78f4734d4.tar.bz2 nvim-treesitter-bcf091d865df27bbdbdc388338cfc6b78f4734d4.tar.lz nvim-treesitter-bcf091d865df27bbdbdc388338cfc6b78f4734d4.tar.xz nvim-treesitter-bcf091d865df27bbdbdc388338cfc6b78f4734d4.tar.zst nvim-treesitter-bcf091d865df27bbdbdc388338cfc6b78f4734d4.zip | |
Add embedded template to support ERB files
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 4a0e5208b..51d8f29d0 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -77,6 +77,14 @@ list.c = { maintainers = { "@vigoux" }, } +list.embedded_template = { + install_info = { + url = "https://github.com/tree-sitter/tree-sitter-embedded-template", + files = { "src/parser.c" }, + }, + filetype = "eruby", +} + list.clojure = { install_info = { url = "https://github.com/sogaiu/tree-sitter-clojure", |
