mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
13 lines
387 B
Lua
13 lines
387 B
Lua
-- lua/plugins/telescope.lua
|
|
-- https://www.lazyvim.org/extras/editor/telescope
|
|
return {
|
|
"nvim-telescope/telescope.nvim",
|
|
opts = function(_, opts)
|
|
opts.keys = opts.keys or {}
|
|
opts.keys["<Space><Space>"] = function()
|
|
require("telescope.builtin").find_files({
|
|
cwd = require("project_nvim.project").get_project_root() or vim.fn.getcwd(),
|
|
})
|
|
end
|
|
end,
|
|
}
|