mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 17:58:51 +02:00
fix(project): make sure to load telescope extension after telescope ran setup
This commit is contained in:
parent
4e8a88fc1f
commit
0955129796
1 changed files with 3 additions and 1 deletions
|
@ -9,7 +9,9 @@ return {
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
config = function(_, opts)
|
config = function(_, opts)
|
||||||
require("project_nvim").setup(opts)
|
require("project_nvim").setup(opts)
|
||||||
require("telescope").load_extension("projects")
|
require("lazyvim.util").on_load("telescope.nvim", function()
|
||||||
|
require("telescope").load_extension("projects")
|
||||||
|
end)
|
||||||
end,
|
end,
|
||||||
keys = {
|
keys = {
|
||||||
{ "<leader>fp", "<Cmd>Telescope projects<CR>", desc = "Projects" },
|
{ "<leader>fp", "<Cmd>Telescope projects<CR>", desc = "Projects" },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue