From f75fd7c3760a1743ab98971cd9bff7b35f85f07a Mon Sep 17 00:00:00 2001 From: Patrick Auernig Date: Wed, 30 Aug 2023 21:23:32 +0200 Subject: [PATCH] Remove unused telescope keybinds and add live grep binding --- lua/valeth/packer/telescope.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lua/valeth/packer/telescope.lua b/lua/valeth/packer/telescope.lua index 2419207..51c3df4 100644 --- a/lua/valeth/packer/telescope.lua +++ b/lua/valeth/packer/telescope.lua @@ -25,9 +25,7 @@ local telescope_builtin = require("telescope.builtin") vim.keymap.set("n", "ff", telescope_builtin.find_files) vim.keymap.set("n", "fb", telescope_builtin.buffers) -vim.keymap.set("n", "fgc", telescope_builtin.git_commits) -vim.keymap.set("n", "fgs", telescope_builtin.git_status) -vim.keymap.set("n", "fgd", telescope_builtin.git_stash) +vim.keymap.set("n", "fg", telescope_builtin.live_grep) local telescope_ext = require("telescope").extensions local harpoon_mark = require("harpoon.mark")