diff options
| author | YongJieYongJie <KhooYongJie@gmx.com> | 2022-03-10 19:14:49 +0800 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-03-11 19:06:39 +0100 |
| commit | a180859eeadd52c05745022064ff423423c17bb5 (patch) | |
| tree | f6f7b234293af53571c8fc294d95bc87a664fba0 /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-a180859eeadd52c05745022064ff423423c17bb5.tar nvim-treesitter-a180859eeadd52c05745022064ff423423c17bb5.tar.gz nvim-treesitter-a180859eeadd52c05745022064ff423423c17bb5.tar.bz2 nvim-treesitter-a180859eeadd52c05745022064ff423423c17bb5.tar.lz nvim-treesitter-a180859eeadd52c05745022064ff423423c17bb5.tar.xz nvim-treesitter-a180859eeadd52c05745022064ff423423c17bb5.tar.zst nvim-treesitter-a180859eeadd52c05745022064ff423423c17bb5.zip | |
Add highlights query for Solidity
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 0cd7cab9f..88bf364a4 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -959,6 +959,15 @@ list.lalrpop = { maintainers = { "@traxys" }, } +list.solidity = { + install_info = { + url = "https://github.com/YongJieYongJie/tree-sitter-solidity", + branch = "with-generated-c-code", + files = { "src/parser.c" }, + }, + maintainers = { "@YongJieYongJie" }, +} + local M = { list = list, filetype_to_parsername = filetype_to_parsername, |
