diff options
| author | kghugo <hugosum.dev@protonmail.com> | 2021-09-18 21:15:37 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-09-19 14:19:20 +0200 |
| commit | d5e87dde100a5a3377043fc55846c97b03b6b01f (patch) | |
| tree | 5cfb7c9c15dff4898f7be77e6eafe7ef7d96754f /lua | |
| parent | highlights(c): add __attribute__ (diff) | |
| download | nvim-treesitter-d5e87dde100a5a3377043fc55846c97b03b6b01f.tar nvim-treesitter-d5e87dde100a5a3377043fc55846c97b03b6b01f.tar.gz nvim-treesitter-d5e87dde100a5a3377043fc55846c97b03b6b01f.tar.bz2 nvim-treesitter-d5e87dde100a5a3377043fc55846c97b03b6b01f.tar.lz nvim-treesitter-d5e87dde100a5a3377043fc55846c97b03b6b01f.tar.xz nvim-treesitter-d5e87dde100a5a3377043fc55846c97b03b6b01f.tar.zst nvim-treesitter-d5e87dde100a5a3377043fc55846c97b03b6b01f.zip | |
Support hjson
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 9ad17fec4..f526fbb1d 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -720,6 +720,15 @@ list.pioasm = { maintainers = { "@leo60228" }, } +list.hjson = { + install_info = { + url = "https://github.com/winston0410/tree-sitter-hjson", + files = { "src/parser.c" }, + generate_requires_npm = true, + }, + maintainers = { "@winston0410" }, +} + local M = { list = list, } |
