neovim/lua/plugins/telescope.lua

18 lines
311 B
Lua

return { -- fuzzy file finder
"nvim-telescope/telescope.nvim",
opts = {
pickers = {
find_files = {
--hidden = true,
no_ignore = true,
},
},
},
keys = {
{
"/",
require("telescope.builtin").current_buffer_fuzzy_find,
desc = "Search for a string in the current buffer",
},
},
}