[mirror] Make your go dev experience better github.com/olexsmir/gopher.nvim
neovim golang

feat: add dlv as dep

Changed files
+3
lua
+1
lua/gopher/config.lua
··· 7 7 gotests = "gotests", 8 8 impl = "impl", 9 9 iferr = "iferr", 10 + dlv = "dlv", 10 11 }, 11 12 }, 12 13 }
+1
lua/gopher/health.lua
··· 15 15 { bin = c.gomodifytags, help = "required for modify struct tags" }, 16 16 { bin = c.impl, help = "required for interface implementing" }, 17 17 { bin = c.gotests, help = "required for test(s) generation" }, 18 + { bin = c.dlv, help = "required for debugger(nvim-dap)" }, 18 19 }, 19 20 }, 20 21 }
+1
lua/gopher/installer.lua
··· 5 5 impl = "github.com/josharian/impl", 6 6 gotests = "github.com/cweill/gotests/...", 7 7 iferr = "github.com/koron/iferr", 8 + dlv = "github.com/go-delve/delve/cmd/dlv", 8 9 } 9 10 10 11 ---@param pkg string