AutoYADM commit: 2024-12-13 20:15:01

This commit is contained in:
Daniel Fichtinger 2024-12-13 20:15:01 -05:00
parent 6d989ffae3
commit 5e55f7d628

View file

@ -18,6 +18,8 @@ vim.keymap.set({ "n", "i" }, special_key, "<C-CR>", { remap = true })
vim.keymap.set({ "i", "n" }, "<C-t>", "<Nop>") vim.keymap.set({ "i", "n" }, "<C-t>", "<Nop>")
map({ "n" }, "cu", "vgu", { desc = "Lowercase current char" })
map({ "n" }, "cU", "vgU", { desc = "Uppercase current char" })
-- Bind arrows to hjkl to my colemak-dh motions work as expected -- Bind arrows to hjkl to my colemak-dh motions work as expected
map({ "n", "x" }, "<Up>", "k", { desc = "Up", remap = true }) map({ "n", "x" }, "<Up>", "k", { desc = "Up", remap = true })
map({ "n", "x" }, "<Down>", "j", { desc = "Down", remap = true }) map({ "n", "x" }, "<Down>", "j", { desc = "Down", remap = true })