This commit is contained in:
RingOfStorms (Joshua Bell) 2023-05-25 03:31:18 -05:00
parent dc3e319f27
commit 5fcc77255c
17 changed files with 144 additions and 142 deletions

11
lua/user/http_rest.lua Normal file
View file

@ -0,0 +1,11 @@
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" },
}
},
}