From 59cbae81fcc953f02abe559c24fc1ca6a92c7231 Mon Sep 17 00:00:00 2001 From: Devin Haska Date: Tue, 27 May 2025 11:54:47 -0700 Subject: [PATCH] feat: add Telescope buffers keybind --- lua/plugins/telescope.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index d9c7326..51e53fb 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -13,6 +13,7 @@ return { vim.keymap.set('n', 'ps', function() builtin.grep_string({ search = vim.fn.input("Grep > ") }) end, { desc = "Grep entire project for string" }) + vim.keymap.set('n', 'b', builtin.buffers, { desc = "Search buffers" }) end }, {