Change lazygit/ranger to terminals with identifiers to stop closing existing terminals. Add keymaps to easily move out of terminals

This commit is contained in:
Edward Litherland-Smith 2022-10-25 09:37:27 +01:00
parent d5af2f1fb0
commit d7b5400c97

View file

@ -24,12 +24,23 @@ require('toggleterm').setup{
open_mapping = [[\t]],
size = 20,
hide_numbers = true, -- hide the number column in toggleterm buffers
direction = 'float',
persist_size = false,
}
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)
end
vim.cmd('autocmd! TermOpen term://* lua set_terminal_keymaps()')
local Terminal = require('toggleterm.terminal').Terminal
local lazygit = Terminal:new({ cmd = "lazygit", hidden = true, direction = 'float' })
local ranger = Terminal:new({ cmd = "ranger", hidden = true, direction = 'float' })
local lazygit = Terminal:new({ cmd = "lazygit", count = 99, direction = 'float' })
local ranger = Terminal:new({ cmd = "ranger", count = 100, direction = 'float' })
function _lazygit_toggle()
lazygit:toggle()