Update rest.lua

This commit is contained in:
cbosvik 2024-07-04 22:55:12 +02:00 committed by GitHub
parent cb26e7af9c
commit 15f963ce4b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,13 +16,12 @@ return {
config = function()
require("kulala").setup({})
end,
opts = {},
},
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, { "http", "graphql" })
end
end,
opts = {
ensure_installed = { "http", "graphql" },
},
},
}