mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-14 21:13:49 +00:00
11 lines
205 B
Lua
11 lines
205 B
Lua
|
-- Run currently open go file using Overseer
|
||
|
return {
|
||
|
name = 'go run file',
|
||
|
builder = function(_)
|
||
|
return {
|
||
|
cmd = 'go run ${file}',
|
||
|
}
|
||
|
end,
|
||
|
condition = { filetype = 'go' },
|
||
|
}
|