From 89e56442d02a39133c720d4401d6c42a2681a2d4 Mon Sep 17 00:00:00 2001 From: Josh Medeski Date: Sun, 5 Nov 2023 15:28:33 -0600 Subject: [PATCH] fix: remove unnecessary ensure install of graphql --- lua/lazyvim/plugins/extras/lang/graphql.lua | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lua/lazyvim/plugins/extras/lang/graphql.lua b/lua/lazyvim/plugins/extras/lang/graphql.lua index 9ceefff0..c02844ae 100644 --- a/lua/lazyvim/plugins/extras/lang/graphql.lua +++ b/lua/lazyvim/plugins/extras/lang/graphql.lua @@ -1,14 +1,4 @@ return { - -- add graphql to treesitter - { - "nvim-treesitter/nvim-treesitter", - opts = function(_, opts) - if type(opts.ensure_installed) == "table" then - vim.list_extend(opts.ensure_installed, { "graphql" }) - end - end, - }, - -- correctly install lsp with mason { "williamboman/mason.nvim",