17 lines
364 B
Lua
17 lines
364 B
Lua
return {
|
|
{
|
|
"rest-nvim/rest.nvim",
|
|
dependencies = {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = function(_, opts)
|
|
opts.ensure_installed = opts.ensure_installed or {}
|
|
table.insert(opts.ensure_installed, "http")
|
|
end,
|
|
},
|
|
ft = 'http',
|
|
keys = {
|
|
{ '<leader>S', '<cmd>Rest run<CR>', ft = 'http' },
|
|
},
|
|
},
|
|
}
|