Update
This commit is contained in:
11
lua/config/keymaps.lua
Normal file
11
lua/config/keymaps.lua
Normal file
@@ -0,0 +1,11 @@
|
||||
-- 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", "<Esc>")
|
||||
|
||||
-- movement
|
||||
map({ "n", "v", "o" }, "H", "^", { desc = "Use 'H' as '^'" })
|
||||
map({ "n", "v", "o" }, "L", "$", { desc = "Use 'L' as '$'" })
|
||||
Reference in New Issue
Block a user