dotfiles/.config/nvim/lua/plugins/extras/lang/web/graphql.lua

22 lines
451 B
Lua

return {
{ import = "plugins.extras.lang.web.typescript-extended" },
{
"williamboman/mason.nvim",
opts = {
ensure_installed = {
"graphql-language-service-cli",
},
},
},
{
"neovim/nvim-lspconfig",
dependencies = {},
opts = {
servers = {
graphql = {
filetypes = { "graphql", "javascript", "javascriptreact", "typescript", "typescriptreact" },
},
},
},
},
}