mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
18 lines
339 B
Lua
18 lines
339 B
Lua
return {
|
|
{ "olimorris/neotest-rspec" },
|
|
{
|
|
"nvim-neotest/neotest",
|
|
opts = {
|
|
adapters = {
|
|
"neotest-rspec"
|
|
}
|
|
},
|
|
dependencies = {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
"olimorris/neotest-rspec",
|
|
},
|
|
-- config = function(_, opts)
|
|
-- require("neotest").setup(opts)
|
|
-- end
|
|
},
|
|
}
|