-- Keymaps are automatically loaded on the VeryLazy event -- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua -- Add any additional keymaps here local map = LazyVim.safe_keymap_set map({ "i" }, "jk", "") -- movement map({ "n", "v", "o" }, "H", "^", { desc = "Use 'H' as '^'" }) map({ "n", "v", "o" }, "L", "$", { desc = "Use 'L' as '$'" })