refactor: add plugin for rest client

This commit is contained in:
Dinesh Salunke 2023-06-17 16:43:15 +05:30
parent 53d418934b
commit 63c111d357

View File

@ -6,8 +6,24 @@ return {
{
"willothy/flatten.nvim",
config = true,
lazy = true,
config = function()
require("flatten").setup()
end,
lazy = false,
priority = 1001,
},
{
"rest-nvim/rest.nvim",
opts = {},
keys = {
{
"<leader>rt",
function()
require("rest-nvim").run()
end,
desc = "Run the rest request in the current buffer",
},
},
},
}