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", true) map("n", "c", "GoCmt", true) map("n", "t", "GoTestAdd", true) map("n", "a", "GoTestsAll", true) map("n", "e", "GoTestsExp", true) map("n", "s", require("scratch.gotest").switch, true)