all repos

init.lua @ 8ed2d1d

my nvim config

init.lua/lua/plugins/gopher.lua(view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---@type LazySpec
return {
  "olexsmir/gopher.nvim",
  ft = "go",
  cmd = { "GoInstallDepsSync", "GoInstallDeps" },
  build = function()
    pcall(vim.cmd.GoInstallDeps)
  end,
  ---@module "gopher"
  ---@type gopher.Config
  ---@diagnostic disable-next-line: missing-fields
  opts = {
    log_level = vim.log.levels.TRACE,
    gotests = {
      template = "testify",
    },
  },
}