@@ -93,20 +93,6 @@ vim.g.maplocalleader = ' '
93
93
-- Set to true if you have a Nerd Font installed and selected in the terminal
94
94
vim .g .have_nerd_font = false
95
95
96
- -- To disable the default Telescope plugin and replace it with
97
- -- another picker (like snacks), set this flag to true
98
- -- By default, Telescope is included and acts as your picker for everything.
99
-
100
- -- If you want to replace Telescope with another picker:
101
- -- 1. Set `vim.g.disable_telescope = true`
102
- -- 2. Enable your replacement picker by requiring it explicitly (e.g., 'kickstart.plugins.snacks').
103
-
104
- -- Note: When you customize your config for yourself,
105
- -- it’s best to remove the Telescope plugin config entirely
106
- -- instead of just disabling it here, to keep your config clean.
107
-
108
- vim .g .disable_telescope = false -- set to true to disable Telescope
109
-
110
96
-- [[ Setting options ]]
111
97
-- See `:help vim.o`
112
98
-- NOTE: You can change these options as you wish!
@@ -374,7 +360,15 @@ require('lazy').setup({
374
360
375
361
{ -- Fuzzy Finder (files, lsp, etc)
376
362
' nvim-telescope/telescope.nvim' ,
377
- enabled = not vim .g .disable_telescope ,
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 ,
378
372
event = ' VimEnter' ,
379
373
dependencies = {
380
374
' nvim-lua/plenary.nvim' ,
0 commit comments