diff --git a/lua/keymaps.lua b/lua/keymaps.lua index a12dc871..d8bfec33 100644 --- a/lua/keymaps.lua +++ b/lua/keymaps.lua @@ -1,8 +1,8 @@ -- [[ Basic Keymaps ]] --- Clear highlights on search when pressing in normal mode +-- Clear highlights on search when pressing in normal mode -- See `:help hlsearch` -vim.keymap.set('n', '', 'nohlsearch') +vim.keymap.set('n', '', 'nohlsearch') -- Keybinds to make split navigation easier. -- Use CTRL+ to switch between windows @@ -10,7 +10,4 @@ vim.keymap.set('n', '', 'nohlsearch') 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' }) -vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) - -vim.keymap.set('i', '', '', { noremap = true }) -vim.keymap.set('n', '', '', { noremap = true }) \ No newline at end of file +vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) \ No newline at end of file