nvim: fix telescope loading

This commit is contained in:
insects 2025-04-10 18:36:43 +02:00
parent 80fdc97c28
commit c7b89f343d

View file

@ -3,6 +3,11 @@
return { return {
{ {
"nvim-telescope/telescope.nvim", "nvim-telescope/telescope.nvim",
lazy = false,
requires = {
"nvim-lua/plenary.nvim",
"xvzc/chezmoi.nvim",
},
config = function() config = function()
local telescope = require("telescope") local telescope = require("telescope")
telescope.setup({}) telescope.setup({})
@ -33,5 +38,12 @@ return {
}), }),
}) })
end, end,
keys = {
{
"<leader>fc",
"<cmd>Telescope chezmoi find_files<cr>",
desc = "Find Chezmoi-managed files",
},
},
}, },
} }