Files
dotfiles/nvim/.config/nvim/lua/overseer/template/user/cargo_build.lua

26 lines
479 B
Lua

return {
name = "Cargo Build",
builder = function()
local file = vim.fn.expand("%:p")
return {
cmd = {
"cargo"
},
args = {
"build"
},
components = {
{
"on_output_quickfix"
},
"default"
}
}
end,
condition = {
filetype = {
"rust",
}
}
}