Make it convenient to run your tasks from within Neovim, for many different task runner providers
- Makefile
- Justfile
- Rakefile
- Invoke
- Cargo (kinda)
Feel free to contribute your own provider!
{
"cetanu/taskrunner.nvim",
event = "VeryLazy",
config = function()
require("task_runner").setup({
providers = {
make = true,
just = true,
rake = true,
invoke = true,
cargo = true,
}
})
end,
}Inside your project, use the command :TaskRunner
Which will show a list of tasks you can execute.
Navigate using regular vim motions and select task with <enter>
Upon selection, a window will display the output

