From 42ca77d1cc33f09fdb3f422b75fedb42bf3aeebb Mon Sep 17 00:00:00 2001 From: MortenB22R <49730926+mortensb1@users.noreply.github.com> Date: Fri, 21 Mar 2025 15:03:33 +0100 Subject: [PATCH] Keybinds --- init.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index f759fdc0..3bcaaf25 100644 --- a/init.lua +++ b/init.lua @@ -185,6 +185,9 @@ vim.keymap.set('t', '', '', { desc = 'Exit terminal mode' } -- vim.keymap.set('n', '', 'echo "Use k to move!!"') -- vim.keymap.set('n', '', 'echo "Use j to move!!"') +vim.keymap.set('n', 'L', '$') +vim.keymap.set('n', 'H', '0') + -- Keybinds to make split navigation easier. -- Use CTRL+ to switch between windows -- @@ -843,7 +846,7 @@ require('lazy').setup({ -- Accept ([y]es) the completion. -- This will auto-import if your LSP supports it. -- This will expand snippets if the LSP sent a snippet. - [''] = cmp.mapping.confirm { select = true }, + [''] = cmp.mapping.confirm { select = true }, -- If you prefer more traditional completion keymaps, -- you can uncomment the following lines