dotfiles/dot_config/nvim/lua/config/plugins/nvim-test.lua
2024-09-26 16:45:44 -05:00

14 lines
211 B
Lua

return {
"klen/nvim-test",
config = function()
require("nvim-test").setup({
term = "toggleterm",
termOpts = {
direction = "horizontal",
height = 24,
},
})
end,
}