From 3cafed17c3ba0ac7aee30739ad24294774adbb04 Mon Sep 17 00:00:00 2001 From: rizkyilhampra Date: Thu, 22 Feb 2024 19:24:00 +0800 Subject: [PATCH] chore(global keymap): remove keymap c on normal mode --- lua/aquila/core/keymaps.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/aquila/core/keymaps.lua b/lua/aquila/core/keymaps.lua index 3ae05fc..3dae05b 100644 --- a/lua/aquila/core/keymaps.lua +++ b/lua/aquila/core/keymaps.lua @@ -32,7 +32,6 @@ set({ "n", "v" }, "y", "\"+y", { desc = "Copy/Yank to system clipboard" set({ "n", "v" }, "p", "\"+p", { desc = "Paste from system clipboard" }) set("v", "P", '"_dP', { desc = 'Do not lose the " register on paste' }) set("n", "x", '"_x', { desc = 'Do not lose the " register on delete' }) -set("n", "c", '"_c', { desc = 'Do not lose the " register on change' }) set("n", "s", '"_s', { desc = 'Do not lose the " register on replace' }) set("n", "~", 'Alpha', { desc = "Take me home to the place i belong ~~" })