nixos/config/nvim/lua/plugins/nvim-test.lua

21 lines
392 B
Lua
Raw Normal View History

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,
}