diff --git a/init.lua b/init.lua index 0c0699bc..bb3f8c54 100644 --- a/init.lua +++ b/init.lua @@ -193,6 +193,11 @@ vim.keymap.set('n', '', '', { desc = 'Move focus to the left wind vim.keymap.set('n', '', '', { desc = 'Move focus to the right window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the lower window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) +-- Same keymaps for terminal mode +vim.keymap.set('t', '', [[]], { desc = 'Move out of terminal mode and focus to the left window' }) +vim.keymap.set('t', '', [[]], { desc = 'Move out of terminal mode and focus to the right window' }) +vim.keymap.set('t', '', [[]], { desc = 'Move out of terminal mode and focus to the lower window' }) +vim.keymap.set('t', '', [[]], { desc = 'Move out of terminal mode and focus to the upper window' }) -- [[ Basic Autocommands ]] -- See `:help lua-guide-autocommands`