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 [""] = { "" } },