From 245182eb60cf24531a2d5dab10dd1b0361785585 Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Wed, 15 Mar 2023 07:01:53 -0400 Subject: [PATCH] fix(pack): fix go pack --- lua/astrocommunity/pack/go/go.lua | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/lua/astrocommunity/pack/go/go.lua b/lua/astrocommunity/pack/go/go.lua index a1efe00bd..a2dcb0994 100644 --- a/lua/astrocommunity/pack/go/go.lua +++ b/lua/astrocommunity/pack/go/go.lua @@ -34,7 +34,6 @@ return { }, { "leoluz/nvim-dap-go", - config = true, ft = "go", dependencies = { "mfussenegger/nvim-dap", @@ -47,16 +46,12 @@ return { end, }, }, + opts = {}, }, { "olexsmir/gopher.nvim", - init = function() utils.list_insert_unique(astronvim.lsp.skip_setup, "gopls") end, - opts = function() return { server = require("astronvim.utils.lsp").config "gopls" } end, + dependencies = { "nvim-lua/plenary.nvim", "nvim-treesitter/nvim-treesitter" }, ft = "go", - dependencies = { - "nvim-lua/plenary.nvim", - "nvim-treesitter/nvim-treesitter", - }, - config = true, + opts = {}, }, }