@@ -258,9 +258,9 @@ require('lazy').setup {
258
258
-- lazy loading plugins that don't need to be loaded immediately at startup.
259
259
--
260
260
-- For example, in the following configuration, we use:
261
- -- event = 'VeryLazy '
261
+ -- event = 'VimEnter '
262
262
--
263
- -- which loads which-key after all the UI elements are loaded. Events can be
263
+ -- which loads which-key before all the UI elements are loaded. Events can be
264
264
-- normal autocommands events (`:help autocmd-events`).
265
265
--
266
266
-- Then, because we use the `config` key, the configuration only runs
@@ -269,7 +269,7 @@ require('lazy').setup {
269
269
270
270
{ -- Useful plugin to show you pending keybinds.
271
271
' folke/which-key.nvim' ,
272
- event = ' VeryLazy ' , -- Sets the loading event to 'VeryLazy '
272
+ event = ' VimEnter ' , -- Sets the loading event to 'VimEnter '
273
273
config = function () -- This is the function that runs, AFTER loading
274
274
require (' which-key' ).setup ()
275
275
@@ -293,7 +293,7 @@ require('lazy').setup {
293
293
294
294
{ -- Fuzzy Finder (files, lsp, etc)
295
295
' nvim-telescope/telescope.nvim' ,
296
- event = ' VeryLazy ' ,
296
+ event = ' VimEnter ' ,
297
297
branch = ' 0.1.x' ,
298
298
dependencies = {
299
299
' nvim-lua/plenary.nvim' ,
@@ -734,7 +734,7 @@ require('lazy').setup {
734
734
},
735
735
736
736
-- Highlight todo, notes, etc in comments
737
- { ' folke/todo-comments.nvim' , dependencies = { ' nvim-lua/plenary.nvim' }, opts = { signs = false } },
737
+ { ' folke/todo-comments.nvim' , event = ' VimEnter ' , dependencies = { ' nvim-lua/plenary.nvim' }, opts = { signs = false } },
738
738
739
739
{ -- Collection of various small independent plugins/modules
740
740
' echasnovski/mini.nvim' ,
0 commit comments