local map = require("core.utils").map -- setup debugger require("gopher.dap").setup() -- options vim.opt_local.expandtab = false vim.opt_local.tabstop = 4 vim.opt_local.shiftwidth = 4 vim.opt_local.softtabstop = 4 -- mapping map("n", ";f", "GoIfErr") map("n", ";c", "GoCmt") map("n", ";g", "GoGenerate") map("n", ";o", "GoTestAdd") map("n", ";a", "GoTestsAll") map("n", ";e", "GoTestsExpr")