diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-08 20:17:26 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-08 20:17:26 +0200 |
| commit | 88616bde7c7b5b25f505997aa2171245f7341453 (patch) | |
| tree | 7232fff70899952e2f91cb8b5d39c496840105db /.config/nvim/ftplugin/graphql.lua | |
| parent | 8c0ace95e67f76b900cacd8daa38faa1444cb3b9 (diff) | |
Updates to lang stuff
Diffstat (limited to '.config/nvim/ftplugin/graphql.lua')
| -rw-r--r-- | .config/nvim/ftplugin/graphql.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.config/nvim/ftplugin/graphql.lua b/.config/nvim/ftplugin/graphql.lua index df3dce9..863bfa0 100644 --- a/.config/nvim/ftplugin/graphql.lua +++ b/.config/nvim/ftplugin/graphql.lua @@ -1,2 +1,5 @@ +if require("cfg.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 } +require("lspconfig").graphql.setup { on_attach = require("cfg.lsp").common_on_attach } |