local map = require("core.utils").map vim.opt_local.expandtab = false vim.opt_local.tabstop = 4 vim.opt_local.shiftwidth = 4 vim.opt_local.softtabstop = 4 map("n", ";f", "GoIfErr") map("n", ";c", "GoCmt") map("n", ";g", "GoGenerate") map("n", ";o", "GoTestAdd") map("n", ";a", "GoTestsAll") map("n", ";e", "GoTestsExpr") map("n", ";dt", function() require("dap-go").debug_test() end)