explicitly enable telescope plugin, add some comments explainging why

This commit is contained in:
Philipp Szechenyi 2025-07-10 15:28:55 +02:00
parent 8ff9a0e4db
commit 60c3c79d36
1 changed files with 9 additions and 0 deletions

View File

@ -360,6 +360,15 @@ require('lazy').setup({
{ -- Fuzzy Finder (files, lsp, etc) { -- Fuzzy Finder (files, lsp, etc)
'nvim-telescope/telescope.nvim', 'nvim-telescope/telescope.nvim',
-- To disable the default Telescope plugin and replace it with
-- another picker (like snacks), set enabled to false and
-- Enable your replacement picker by requiring it explicitly (e.g., 'kickstart.plugins.snacks')
-- By default, Telescope is included and acts as your picker for everything.
-- Note: When you customize your config for yourself,
-- its best to remove the Telescope plugin config entirely
-- instead of just disabling it here, to keep your config clean.
enabled = true,
event = 'VimEnter', event = 'VimEnter',
dependencies = { dependencies = {
'nvim-lua/plenary.nvim', 'nvim-lua/plenary.nvim',