nvim: fix telescope loading
This commit is contained in:
parent
80fdc97c28
commit
c7b89f343d
1 changed files with 12 additions and 0 deletions
|
@ -3,6 +3,11 @@
|
|||
return {
|
||||
{
|
||||
"nvim-telescope/telescope.nvim",
|
||||
lazy = false,
|
||||
requires = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"xvzc/chezmoi.nvim",
|
||||
},
|
||||
config = function()
|
||||
local telescope = require("telescope")
|
||||
telescope.setup({})
|
||||
|
@ -33,5 +38,12 @@ return {
|
|||
}),
|
||||
})
|
||||
end,
|
||||
keys = {
|
||||
{
|
||||
"<leader>fc",
|
||||
"<cmd>Telescope chezmoi find_files<cr>",
|
||||
desc = "Find Chezmoi-managed files",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue