Add flash and C-d C-u

This commit is contained in:
Zam Kokott
2025-11-12 15:15:57 +00:00
parent 42bbc0b55d
commit dd981c1a1f
3 changed files with 14 additions and 0 deletions

View File

@@ -67,3 +67,7 @@ vim.keymap.set("n", "K", vim.lsp.buf.hover, {})
vim.keymap.set("n", "gd", vim.lsp.buf.definition, {})
vim.keymap.set({ "n", "v" }, "<leader>ca", vim.lsp.buf.code_action, {})
vim.keymap.set("n", "<leader>cr", vim.lsp.buf.rename, {})
-- Motions
vim.keymap.set("n", "<C-d>", "<C-d>zz", {})
vim.keymap.set("n", "<C-u>", "<C-u>zz", {})