We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ff9a0e commit 60c3c79Copy full SHA for 60c3c79
1 file changed
init.lua
@@ -360,6 +360,15 @@ require('lazy').setup({
360
361
{ -- Fuzzy Finder (files, lsp, etc)
362
'nvim-telescope/telescope.nvim',
363
+ -- To disable the default Telescope plugin and replace it with
364
+ -- another picker (like snacks), set enabled to false and
365
+ -- Enable your replacement picker by requiring it explicitly (e.g., 'kickstart.plugins.snacks')
366
+ -- By default, Telescope is included and acts as your picker for everything.
367
+
368
+ -- Note: When you customize your config for yourself,
369
+ -- it’s best to remove the Telescope plugin config entirely
370
+ -- instead of just disabling it here, to keep your config clean.
371
+ enabled = true,
372
event = 'VimEnter',
373
dependencies = {
374
'nvim-lua/plenary.nvim',
0 commit comments