This commit is contained in:
2025-07-23 12:52:11 -04:00
parent dea6c74137
commit 280ee64745

View File

@@ -13,6 +13,7 @@ local function map(mode, lhs, rhs, opts)
end end
map("n", "<Esc>", ":nohlsearch<CR>") -- Clear search highlight map("n", "<Esc>", ":nohlsearch<CR>") -- Clear search highlight
map("n", "<leader>ff", ":find ") -- Fuzzy Find on the file system
map("v", "J", ":m '>+1<CR>gv=gv") -- Move the current line down map("v", "J", ":m '>+1<CR>gv=gv") -- Move the current line down
map("v", "K", ":m '<-2<CR>gv=gv") -- Move the current line up map("v", "K", ":m '<-2<CR>gv=gv") -- Move the current line up
map("n", "<C-d>", "<C-d>zz") -- Scroll down and move cursor to center map("n", "<C-d>", "<C-d>zz") -- Scroll down and move cursor to center