mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-14 07:26:44 +00:00
18 lines
392 B
Lua
18 lines
392 B
Lua
return {
|
|
'akinsho/toggleterm.nvim',
|
|
event = 'VeryLazy',
|
|
keys = {
|
|
{ mode = { 'n' }, '<C-t>', ':ToggleTerm<CR>' },
|
|
},
|
|
opts = {
|
|
open_mapping = [[<C-t>]],
|
|
size = function(term)
|
|
if term.direction == 'horizontal' then
|
|
return 15
|
|
else
|
|
return vim.o.columns * 0.3
|
|
end
|
|
end,
|
|
},
|
|
}
|