local map = require("core.utils").map -- 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", "t", "GoTestAdd") map("n", "a", "GoTestsAll") map("n", "e", "GoTestsExp") map( "n", "", require("scratch.gotest_switcher").switch )