summaryrefslogtreecommitdiff
path: root/lua/nvim-treesitter
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/nvim-treesitter
parent5fa6e274274210f34de37487d439cbbbf3a8a4d3 (diff)
Support hjson
Diffstat (limited to 'lua/nvim-treesitter')
-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 9ad17fec..f526fbb1 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,
}