dotfiles/.config/nvim/lua/plugins/extras/lang/web/graphql.lua
2023-12-16 18:19:49 +01:00

21 lines
427 B
Lua

return {
{
"williamboman/mason.nvim",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, {
"graphql-language-service-cli",
})
end,
},
{
"neovim/nvim-lspconfig",
dependencies = {},
opts = {
servers = {
graphql = {
filetypes = { "graphql", "javascript", "javascriptreact", "typescript", "typescriptreact" },
},
},
},
},
}