21 lines
876 B
Lua
21 lines
876 B
Lua
return {
|
|
-- TODO: Consider maybe not using this, and just using tmux panes
|
|
'akinsho/toggleterm.nvim',
|
|
version = '*',
|
|
config = function()
|
|
require('toggleterm').setup({})
|
|
function _G.set_terminal_keymaps()
|
|
local opts = { buffer = 0 }
|
|
vim.keymap.set('t', '<esc>', [[<C-\><C-n>]], opts)
|
|
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)
|
|
vim.keymap.set('t', '<C-w>', [[<C-\><C-n><C-w>]], opts)
|
|
end
|
|
|
|
-- if you only want these mappings for toggle term use term://*toggleterm#* instead
|
|
vim.cmd('autocmd! TermOpen term://* lua set_terminal_keymaps()')
|
|
end,
|
|
}
|