From 96ac5d381574dba3886ed722ec0e4526972d9093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Flo=C3=9Fmann?= Date: Mon, 12 Jan 2026 10:07:18 +0100 Subject: [PATCH] add mapping for telescope buffer fuzzy find --- lua/plugins/mappings.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/plugins/mappings.lua diff --git a/lua/plugins/mappings.lua b/lua/plugins/mappings.lua new file mode 100644 index 0000000..09a589b --- /dev/null +++ b/lua/plugins/mappings.lua @@ -0,0 +1,13 @@ +return { + { + "AstroNvim/astrocore", + ---@type AstroCoreOpts + opts = { + mappings = { + n = { + ["f/"] = require("telescope.builtin").current_buffer_fuzzy_find, + }, + }, + }, + }, +}