nvim-lspconfig/lua/lspconfig/graphql.lua
2021-07-03 15:49:27 -07:00

31 lines
667 B
Lua

local configs = require "lspconfig/configs"
local util = require "lspconfig/util"
local server_name = "graphql"
local bin_name = "graphql-lsp"
configs[server_name] = {
default_config = {
cmd = { bin_name, "server", "-m", "stream" },
filetypes = { "graphql" },
root_dir = util.root_pattern(".git", ".graphqlrc"),
},
docs = {
description = [[
https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-cli
`graphql-lsp` can be installed via `npm`:
```sh
npm install -g graphql-language-service-cli
```
]],
default_config = {
root_dir = [[root_pattern('.git', '.graphqlrc')]],
},
},
}
-- vim:et ts=2 sw=2