-
Currently my telescope plugin config is like this (ref from folke's dot): return {
"nvim-telescope/telescope.nvim",
dependencies = {
"lazytanuki/nvim-mapper",
"nvim-telescope/telescope-file-browser.nvim",
{"nvim-telescope/telescope-fzf-native.nvim", build = "make"},
},
config = function()
-- ...
end
} If I understand correctly, it would load all extensions when telescope is initialized. It should be working when split all extensions into single file respectively, and put But I am now using a Hydra submenu before going to telescope, so I am thinking only load the extensions when press the corresponding key inside Hydra menu. How can I handle to make it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Don't put the extensions as a dependency. Lua deps are automatically resolved, so that's not needed if you dont want the extensions to load together with Telescope. |
Beta Was this translation helpful? Give feedback.
Don't put the extensions as a dependency. Lua deps are automatically resolved, so that's not needed if you dont want the extensions to load together with Telescope.