14 lines
242 B
Lua
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
|
|
}
|
|
}
|