aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorkghugo <hugosum.dev@protonmail.com>2021-09-18 21:15:37 +0100
committerStephan Seitz <stephan.seitz@fau.de>2021-09-19 14:19:20 +0200
commitd5e87dde100a5a3377043fc55846c97b03b6b01f (patch)
tree5cfb7c9c15dff4898f7be77e6eafe7ef7d96754f /lua
parenthighlights(c): add __attribute__ (diff)
downloadnvim-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.lua9
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,
}