feat(http): add http extra lang

This commit is contained in:
Peter Benjamin 2024-01-28 14:15:21 -08:00 committed by Folke Lemaitre
parent f8268faa7c
commit e4e7b02fa2

View file

@ -0,0 +1,18 @@
return {
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, {
"http",
"json",
})
end,
},
{
"williamboman/mason.nvim",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "jq" })
end,
},
}