LazyVim/lua/plugins/telescope.lua

27 lines
546 B
Lua
Raw Normal View History

2023-04-17 18:12:24 +02:00
return {
{
"nvim-telescope/telescope.nvim",
keys = {
-- stylua: ignore
{
2023-10-16 10:47:37 +02:00
"<leader>fC",
2023-10-18 17:41:56 +02:00
function() require("telescope.builtin").find_files({ cwd = require("lazy.core.config").options.root .. "/LazyVim/lua/lazyvim" }) end,
2023-10-16 10:47:37 +02:00
desc = "Find LazyVim Config File",
2023-04-17 18:12:24 +02:00
},
2023-10-18 17:41:56 +02:00
-- stylua: ignore
{
"<leader>snT",
"<cmd>Noice telescope<CR>",
desc = "Noice Telescope",
},
2023-04-17 18:12:24 +02:00
},
opts = {
defaults = {
results_title = "Telescope",
},
},
},
}