forked from dineshsalunke/nvim-config
30 lines
567 B
Lua
30 lines
567 B
Lua
return {
|
|
{
|
|
"nvim-lua/plenary.nvim",
|
|
lazy = true,
|
|
},
|
|
|
|
{
|
|
"willothy/flatten.nvim",
|
|
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",
|
|
},
|
|
},
|
|
},
|
|
}
|