diff options
| author | Clay <connorlay@pm.me> | 2021-08-15 09:40:02 -0700 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-09-17 21:06:36 +0200 |
| commit | a9e32d0cc5641651bffc5bcc74efffa4ac6fcd13 (patch) | |
| tree | c6fb6e091621bd04778a6ee8af976e6f24b1b37d /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-a9e32d0cc5641651bffc5bcc74efffa4ac6fcd13.tar nvim-treesitter-a9e32d0cc5641651bffc5bcc74efffa4ac6fcd13.tar.gz nvim-treesitter-a9e32d0cc5641651bffc5bcc74efffa4ac6fcd13.tar.bz2 nvim-treesitter-a9e32d0cc5641651bffc5bcc74efffa4ac6fcd13.tar.lz nvim-treesitter-a9e32d0cc5641651bffc5bcc74efffa4ac6fcd13.tar.xz nvim-treesitter-a9e32d0cc5641651bffc5bcc74efffa4ac6fcd13.tar.zst nvim-treesitter-a9e32d0cc5641651bffc5bcc74efffa4ac6fcd13.zip | |
Add HEEx language support, add missing commentstrings
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 9803f241e..89b448942 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -271,6 +271,16 @@ list.surface = { maintainers = { "@connorlay" }, } +list.heex = { + install_info = { + url = "https://github.com/connorlay/tree-sitter-heex", + files = { "src/parser.c" }, + branch = "main", + }, + filetype = "heex", + maintainers = { "@connorlay" }, +} + list.ocaml = { install_info = { url = "https://github.com/tree-sitter/tree-sitter-ocaml", |
