diff --git a/lua/custom/maps/init.lua b/lua/custom/maps/init.lua index b1b0ded..d5155f2 100644 --- a/lua/custom/maps/init.lua +++ b/lua/custom/maps/init.lua @@ -27,14 +27,14 @@ vim.keymap.set({ 'v', 'n' }, 'zj', '', { desc = 'move and scroll down' }) -- go to beginning and end in insert mode vim.keymap.set('i', '', '^i', { desc = 'Go to the start of the line' }) vim.keymap.set('i', '', '', { desc = 'Go to the end of the line' }) -vim.keymap.set('i', '', 'wi', { desc = 'Go a word further' }) -vim.keymap.set('i', '', 'bi', { desc = 'Go a word backward' }) +vim.keymap.set('i', '', 'lwi', { desc = 'Go a word further' }) +vim.keymap.set('i', '', 'lbi', { desc = 'Go a word backward' }) -- navigate hjkl in insert mode vim.keymap.set('i', '', '', { desc = 'Move left' }) -vim.keymap.set('i', '', '', { desc = 'Move right' }) -vim.keymap.set('i', '', '', { desc = 'Move down' }) -vim.keymap.set('i', '', '', { desc = 'Move up' }) +vim.keymap.set('i', '', '', { desc = 'Move down' }) +vim.keymap.set('i', '', '', { desc = 'Move up' }) +vim.keymap.set('i', '', '', { desc = 'Move right' }) -- move to window -- See `:help wincmd` for a list of all window commands