We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2809184 commit f09e225Copy full SHA for f09e225
lua/rest-nvim/init.lua
@@ -23,19 +23,6 @@ function rest.setup(user_configs)
23
24
-- Set up rest.nvim autocommands and commands
25
autocmds.setup()
26
-
27
- -- Set up tree-sitter HTTP parser branch
28
- -- NOTE: remove this piece of code once rest.nvim v2 has been pushed,
29
- -- and tree-sitter-http `next` branch has been merged
30
- -- and nvim-treesitter http is up-to-date
31
- local ok, treesitter_parsers = pcall(require, "nvim-treesitter.parsers")
32
- if ok then
33
- local parser_config = treesitter_parsers.get_parser_configs()
34
35
- parser_config.http = vim.tbl_deep_extend("force", parser_config.http, {
36
- install_info = { branch = "next" },
37
- })
38
- end
39
end
40
41
return rest
0 commit comments