summaryrefslogtreecommitdiff
path: root/ftplugin/graphql.lua
diff options
context:
space:
mode:
authorhui.liu <[email protected]>2021-07-09 00:35:41 +0800
committerGitHub <[email protected]>2021-07-08 12:35:41 -0400
commit53fed9d65538e0b9dcad6f32cca63b1d445a76dd (patch)
tree2c28d47cff9c45f5c5626516118600e4a8e6621b /ftplugin/graphql.lua
parent9233611bdcad1603cd217f6cc8a90e1a7e7a91b8 (diff)
Check lsp client is active for all language files (#790)
Diffstat (limited to 'ftplugin/graphql.lua')
-rw-r--r--ftplugin/graphql.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/ftplugin/graphql.lua b/ftplugin/graphql.lua
index df3dce9b..c9ce5437 100644
--- a/ftplugin/graphql.lua
+++ b/ftplugin/graphql.lua
@@ -1,2 +1,6 @@
+if require("lv-utils").check_lsp_client_active "graphql" then
+ return
+end
+
-- npm install -g graphql-language-service-cli
require("lspconfig").graphql.setup { on_attach = require("lsp").common_on_attach }