nvim/lua/plugins/http_rest.lua
RingOfStorms (Joshua Bell) 2566fbbec4 Working on lsp
2023-06-09 03:50:20 -05:00

9 lines
273 B
Lua

return {
"rest-nvim/rest.nvim",
commit = "d8dc204e9f6fd930d9d1d709f0d19138f804431a",
event = "BufEnter *.http",
requires = { "nvim-lua/plenary.nvim" },
keys = {
{ "<leader>r", function() require("rest-nvim").run() end, desc = "Send selected http request" }
}
}