1
Fork 0
dots/nvim/lua/plugins/toggleterm.lua
2023-08-21 14:56:16 +05:00

14 lines
242 B
Lua

return {
"akinsho/toggleterm.nvim",
opts = {
open_mapping = "<C-t>",
direction = "float",
size = function(term)
if term.direction == "vertical" then
return 80
else
return 12
end
end
}
}