Update remap.lua

This commit is contained in:
vx_clutch
2025-06-02 08:17:07 -04:00
committed by GitHub
parent 7661d0d70a
commit 6e9c291c20

View File

@@ -12,10 +12,8 @@ end
map("n", "<Esc>", ":nohlsearch<CR>")
-- Move lines --
map("n", "<A-j>", ":m .+1<CR>==")
map("n", "<A-k>", ":m .-2<CR>==")
map("v", "<A-j>", ":m '>+1<CR>gv=gv")
map("v", "<A-k>", ":m '<-2<CR>gv=gv")
map("v", "J", ":m '>+1<CR>gv=gv")
map("v", "K", ":m '<-2<CR>gv=gv")
-- Scrolling --
map("n", "<C-d>", "<C-d>zz")