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

Configure Feed

Select the types of activity you want to include in your feed.

feat: add dlv as dep

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