dotfiles/nvim/lua/plugins/neotest-rust.lua

15 lines
248 B
Lua
Raw Permalink Normal View History

2024-02-28 22:37:08 +01:00
return {
{ "rouge8/neotest-rust" },
{
"nvim-neotest/neotest",
opts = function(_, opts)
table.insert(
opts.adapters,
require("neotest-rust")({
args = { "--no-capture" },
})
)
end,
},
}