nvim/lua/user/rest-http.lua
RingOfStorms (Joshua Bell) dc3e319f27 Working on LSP and shit like that, Astro config is confusing, need to
learn it myself from scratch
2023-05-23 02:56:59 -05:00

11 lines
286 B
Lua

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