telescope layer#
The telescope layer adds
telescope.nvim, a fuzzy
finder over lists, to your editor.
Bindings#
In normal mode:
<leader>pfind files by name;<leader>fsearches through file content.
Configuration#
configcan be any valid configuration forrequire('telescope.nvim').setupas described here;bindsis a table of bindings passed in thebindslayer format.
Examples#
-- path/of/your/vim/config/init.lua
require("visimp")({
telescope = {
config = {
pickers = {
find_files = {
theme = "dropdown",
},
},
},
binds = {
[{
mode = 'n',
bind = '<leader>P',
desc = 'Find new planets to explore',
}] = 'planets',
},
},
})Documentation#
Full documentation for telescope.nvim can be found here.