mirror of https://github.com/LazyVim/starter
22 lines
533 B
Lua
22 lines
533 B
Lua
|
return {
|
||
|
"nvim-telescope/telescope.nvim",
|
||
|
keys = {
|
||
|
-- add a keymap to browse plugin files
|
||
|
-- stylua: ignore
|
||
|
{
|
||
|
"<leader>fp",
|
||
|
function() require("telescope.builtin").find_files({ cwd = require("lazy.core.config").options.root }) end,
|
||
|
desc = "Find Plugin File",
|
||
|
},
|
||
|
},
|
||
|
-- change some options
|
||
|
opts = {
|
||
|
defaults = {
|
||
|
layout_strategy = "horizontal",
|
||
|
layout_config = { prompt_position = "top" },
|
||
|
sorting_strategy = "ascending",
|
||
|
winblend = 0,
|
||
|
},
|
||
|
},
|
||
|
}
|