21 lines
392 B
Lua
21 lines
392 B
Lua
return {
|
|
"klen/nvim-test",
|
|
cmd = {
|
|
"TestSuite",
|
|
"TestFile",
|
|
"TestEdit",
|
|
"TestNearest",
|
|
"TestLast",
|
|
"TestVisit",
|
|
"TestInfo",
|
|
},
|
|
config = function()
|
|
require("nvim-test").setup {
|
|
termOpts = {
|
|
direction = "horizontal",
|
|
keep_one = true,
|
|
},
|
|
}
|
|
end,
|
|
}
|