From 5cd235f05fc9f57bf49c516a8ab0147e2ac232e8 Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Thu, 5 Sep 2024 12:12:04 -0400 Subject: [PATCH] fix(go): add empty config function for neotest adapter --- lua/astrocommunity/pack/go/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/astrocommunity/pack/go/init.lua b/lua/astrocommunity/pack/go/init.lua index b0578f1bd..bedd7aeb0 100644 --- a/lua/astrocommunity/pack/go/init.lua +++ b/lua/astrocommunity/pack/go/init.lua @@ -128,7 +128,7 @@ return { { "nvim-neotest/neotest", optional = true, - dependencies = { "nvim-neotest/neotest-go" }, + dependencies = { "nvim-neotest/neotest-go", config = function() end }, opts = function(_, opts) if not opts.adapters then opts.adapters = {} end table.insert(opts.adapters, require "neotest-go"(require("astrocore").plugin_opts "neotest-go"))