From afe25aca8a5676114aeeca87f9dc9a959918e59a Mon Sep 17 00:00:00 2001 From: Josh Medeski Date: Fri, 1 Sep 2023 10:57:08 -0500 Subject: [PATCH] feat: add graphql to mason enure installed --- lua/lazyvim/plugins/extras/lang/graphql.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lua/lazyvim/plugins/extras/lang/graphql.lua b/lua/lazyvim/plugins/extras/lang/graphql.lua index 11744efc..b7cd07d3 100644 --- a/lua/lazyvim/plugins/extras/lang/graphql.lua +++ b/lua/lazyvim/plugins/extras/lang/graphql.lua @@ -9,6 +9,16 @@ return { end, }, + -- correctly install lsp with mason + { + "williamboman/mason.nvim", + opts = function(_, opts) + vim.list_extend(opts.ensure_installed, { + "graphql", + }) + end, + }, + -- correctly setup lspconfig { "neovim/nvim-lspconfig",