nvim-config/lua/overseer/template/golang/run_project.lua

11 lines
200 B
Lua

-- Run project in working directory using Overseer
return {
name = 'go run',
builder = function(_)
return {
cmd = 'go run .',
}
end,
condition = { filetype = 'go' },
}