From 4db4fabf25efe99f6c92596720e8d68e79775b53 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Mon, 13 May 2024 13:28:28 +0300 Subject: Added some stuff i don't remember --- nvim/.config/nvim/lua/config/keymaps.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'nvim/.config') diff --git a/nvim/.config/nvim/lua/config/keymaps.lua b/nvim/.config/nvim/lua/config/keymaps.lua index f8dad17..7aaf197 100644 --- a/nvim/.config/nvim/lua/config/keymaps.lua +++ b/nvim/.config/nvim/lua/config/keymaps.lua @@ -55,23 +55,23 @@ vim.cmd([[ map("n", "i", "VimtexCompile", { desc = "Compile latex document", remap = true }) -- harpoon keymaps -map("n", "mm", function() +map("n", "m", function() require("harpoon.ui").toggle_quick_menu() end, { desc = "toggle harpoon menu", remap = true }) -map("n", "ma", function() +map("n", "a", function() require("harpoon.mark").add_file() end, { desc = "Add file to harpoon", remap = true }) -map("n", "mq", function() +map("n", "q", function() require("harpoon.ui").nav_file(1) end, { desc = "navigate to first harpoon mark", remap = true }) -map("n", "mw", function() +map("n", "w", function() require("harpoon.ui").nav_file(2) end, { desc = "navigate to second harpoon mark", remap = true }) -map("n", "me", function() +map("n", "e", function() require("harpoon.ui").nav_file(3) end, { desc = "navigate to third harpoon mark", remap = true }) -- cgit v1.2.3