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", ";g", "GoGenerate %") map("n", ";o", "GoTestAdd") map("n", ";a", "GoTestsAll") map("n", ";s", function() require("scratch.gotest_switcher").switch() end)