diff --git a/init.lua b/init.lua index 82944d0f..0c0699bc 100644 --- a/init.lua +++ b/init.lua @@ -187,9 +187,8 @@ vim.keymap.set('n', '', 'echo "Use j to move!!"') -- Keybinds to make split navigation easier. -- Use CTRL+ to switch between windows -- See `:help wincmd` for a list of all window commands - -- Unmap Ctrl+L from clearing the screen -vim.api.nvim_set_keymap('n', '', '', { noremap = true, silent = true }) +vim.keymap.set('n', '', '', { noremap = true, silent = true }) vim.keymap.set('n', '', '', { desc = 'Move focus to the left window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the right window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the lower window' })