From bce0744ca37e3ab82cd4d12758830b9c1bb4e8d3 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sat, 31 Dec 2022 18:05:33 +0100 Subject: [PATCH] feat(telescope): added more mappings --- lua/plugins/editor.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua index de1a58fb..63231be8 100644 --- a/lua/plugins/editor.lua +++ b/lua/plugins/editor.lua @@ -19,7 +19,13 @@ return { { "nvim-telescope/telescope.nvim", cmd = "Telescope", - keys = { { "", "Telescope find_files", desc = "Find Files" } }, + keys = { + { "", "Telescope find_files", desc = "Find Files" }, + { "ff", "Telescope find_files", desc = "Find Files" }, + { "fr", "Telescope oldfiles", desc = "Recent" }, + { "fb", "Telescope buffers", desc = "Buffers" }, + { "/", "Telescope live_grep", desc = "Find in Files (Grep)" }, + }, config = true, }, @@ -28,6 +34,7 @@ return { "folke/which-key.nvim", event = "VeryLazy", config = { + show_help = false, plugins = { spelling = true }, key_labels = { [""] = "SPC" }, },