2022-11-07 16:41:35 +00:00
|
|
|
require('toggleterm').setup {
|
2023-01-27 11:11:20 +00:00
|
|
|
direction = 'float',
|
2022-11-02 13:40:30 +00:00
|
|
|
open_mapping = [[\t]],
|
2022-11-30 16:29:42 +00:00
|
|
|
size = function (term)
|
|
|
|
if term.direction == "horizontal" then
|
|
|
|
return 15
|
|
|
|
elseif term.direction == "vertical" then
|
|
|
|
return vim.o.columns * 0.3
|
|
|
|
end
|
|
|
|
end,
|
2022-11-02 13:40:30 +00:00
|
|
|
hide_numbers = true, -- hide the number column in toggleterm buffers
|
|
|
|
persist_size = false,
|
2022-11-01 14:52:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function _G.set_terminal_keymaps()
|
2022-11-07 16:41:35 +00:00
|
|
|
local opts = { buffer = 0 }
|
2022-11-02 13:40:30 +00:00
|
|
|
vim.keymap.set('t', '<C-h>', [[<Cmd>wincmd h<CR>]], opts)
|
|
|
|
vim.keymap.set('t', '<C-j>', [[<Cmd>wincmd j<CR>]], opts)
|
|
|
|
vim.keymap.set('t', '<C-k>', [[<Cmd>wincmd k<CR>]], opts)
|
|
|
|
vim.keymap.set('t', '<C-l>', [[<Cmd>wincmd l<CR>]], opts)
|
2022-11-01 14:52:38 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
vim.cmd('autocmd! TermOpen term://* lua set_terminal_keymaps()')
|