add keymap for ex

This commit is contained in:
Andrea Canton 2024-12-15 12:33:40 +01:00
parent 84946d8203
commit e4507d938e
2 changed files with 1 additions and 4 deletions

View file

@ -190,6 +190,7 @@ vim.keymap.set('n', '<C-l>', '<C-w><C-l>', { desc = 'Move focus to the right win
vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' })
vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' })
vim.keymap.set('n', '<leader>e', ':Ex<cr>', { desc = 'open file explorer' })
-- [[ Basic Autocommands ]]
-- See `:help lua-guide-autocommands`