From ce3c6a8d435272de5b549cd51c7f8fa915b64518 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 7 Aug 2024 17:31:24 +0200 Subject: Update telescope live_grep shortcut to avoid delay --- config/nvim/lua/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/nvim') diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index 697d8fe..7741484 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -474,7 +474,7 @@ return require("packer").startup(function() map("n", "H", "Telescope help_tags", {}) map("n", ";", "Telescope commands", {}) -- map("n", "p", "Telescope tags", {}) - map("n", "g", "Telescope live_grep", {}) + map("n", "gg", "Telescope live_grep", { noremap = true, silent = true }) map("n", "G", "Telescope grep_string", {}) end } -- cgit