---@type LazySpec
return {
"olexsmir/gopher.nvim",
ft = "go",
dev = true,
cmd = "GoInstallDeps",
build = function()
vim.cmd.GoInstallDeps()
end,
---@type gopher.Config
opts = {
log_level = vim.log.levels.TRACE,
gotests = {
template = "testify",
},
},
}
|