summaryrefslogtreecommitdiff
path: root/lua/nvim-treesitter
diff options
context:
space:
mode:
authorgegoune <dev@clog.rocks>2021-11-04 13:56:26 +0200
committerStephan Seitz <stephan.seitz@fau.de>2021-11-12 21:52:50 +0100
commita93c5b80d724f40da649f7e351234531e0e9fcb2 (patch)
treec2c2b2060fbaaae5c894a16747eb7ea088cc7d8d /lua/nvim-treesitter
parentfba03a304e0e8042f8330e1fe7b1ce6764a6fd16 (diff)
feat: add http parser
All credit goes to @NTBBloodbath. See: https://github.com/NTBBloodbath/rest.nvim/issues/75#issuecomment-960447966 Co-authored-by: NTBBloodbath <bloodbathalchemist@protonmail.com>
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 71ca152e..44ef78ed 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -762,6 +762,15 @@ list.llvm = {
maintainers = { "@benwilliamgraham" },
}
+list.http = {
+ install_info = {
+ url = "https://github.com/NTBBloodbath/tree-sitter-http",
+ branch = "main",
+ files = { "src/parser.c" },
+ },
+ maintainers = { "@NTBBloodbath" },
+}
+
local M = {
list = list,
}