From f83153fedb67ec06b8aa14944dd5d093e8baab34 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Thu, 2 Nov 2023 12:28:01 +0100 Subject: [PATCH] =?UTF-8?q?feat(mappings):=20Mise=20=C3=A0=20jours=20des?= =?UTF-8?q?=20Mappings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/user/mappings.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/user/mappings.lua b/lua/user/mappings.lua index 2cb647c..372aa34 100644 --- a/lua/user/mappings.lua +++ b/lua/user/mappings.lua @@ -23,7 +23,8 @@ return { ["xt"] = { "terminal tig", desc = "Open tig in a new tab" }, -- My telescope keybindings - ["fo"] = { "Telescope spell_suggest", desc = "Spell suggegestion with telescope" }, + ["fq"] = { "Telescope quickfix", desc = "Find quickfixes with Telescope" }, + ["fs"] = { "Telescope spell_suggest", desc = "Find spell suggestions with Telescope" }, }, @@ -37,6 +38,9 @@ return { -- Clear Ctrl+l so that we can use it to clear the terminal [""] = false, [""] = false, + -- Clear Ctrl-J and Ctrl-K so that we can use them to navigate the terminal (for lazygit) + [""] = false, + [""] = false, -- Switch to normal mode in terminal mode [""] = { "" } },