3 files changed,
3 insertions(+),
0 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed at:
2022-09-22 17:54:49 +0300
Parent:
93be1b1
M
lua/gopher/config.lua
@@ -7,6 +7,7 @@ gomodifytags = "gomodifytags",
gotests = "gotests", impl = "impl", iferr = "iferr", + dlv = "dlv", }, }, }
M
lua/gopher/health.lua
@@ -15,6 +15,7 @@ { bin = c.go, help = "required for GoMod, GoGet, GoGenerate command" },
{ bin = c.gomodifytags, help = "required for modify struct tags" }, { bin = c.impl, help = "required for interface implementing" }, { bin = c.gotests, help = "required for test(s) generation" }, + { bin = c.dlv, help = "required for debugger(nvim-dap)" }, }, }, }
M
lua/gopher/installer.lua
@@ -5,6 +5,7 @@ gomodifytags = "github.com/fatih/gomodifytags",
impl = "github.com/josharian/impl", gotests = "github.com/cweill/gotests/...", iferr = "github.com/koron/iferr", + dlv = "github.com/go-delve/delve/cmd/dlv", } ---@param pkg string