nvim/lua/plugins/http_rest.lua
RingOfStorms (Joshua Bell) 452abf2029 formatting
2023-07-05 10:06:18 -05:00

14 lines
236 B
Lua

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