add mapping for telescope buffer fuzzy find

This commit is contained in:
Michael Floßmann 2026-01-12 10:07:18 +01:00
parent 7ceb5e9d8c
commit 96ac5d3815

13
lua/plugins/mappings.lua Normal file
View file

@ -0,0 +1,13 @@
return {
{
"AstroNvim/astrocore",
---@type AstroCoreOpts
opts = {
mappings = {
n = {
["<Leader>f/"] = require("telescope.builtin").current_buffer_fuzzy_find,
},
},
},
},
}