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