feat: add graphql to mason enure installed

This commit is contained in:
Josh Medeski 2023-09-01 10:57:08 -05:00
parent aeb989151e
commit afe25aca8a
No known key found for this signature in database
GPG key ID: DFD5E7D060DB3958

View file

@ -9,6 +9,16 @@ return {
end,
},
-- correctly install lsp with mason
{
"williamboman/mason.nvim",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, {
"graphql",
})
end,
},
-- correctly setup lspconfig
{
"neovim/nvim-lspconfig",