From 56e244cb1ae95294ebfec4f17c5177c3d8425939 Mon Sep 17 00:00:00 2001 From: a-rossetti Date: Fri, 17 Jan 2025 15:19:00 +0100 Subject: [PATCH] removed conflicting shortcut --- init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 7f7d5eaf..82944d0f 100644 --- a/init.lua +++ b/init.lua @@ -186,8 +186,10 @@ 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', '', '', { 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' })