1
Fork 0
dots/nvim/lua/plugins/toggleterm.lua

15 lines
242 B
Lua
Raw Normal View History

2023-08-21 09:56:16 +00:00
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
}
}