diff options
| author | Taulant Aliraj <tau141@gmail.com> | 2024-03-03 02:07:58 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-02 21:07:58 -0500 |
| commit | 1e880d8c5b923fe17b931c162d3fa875608d5d2f (patch) | |
| tree | d602a8b81a9424c9b792bf478c5d05947fab9c63 /nvim/init.lua | |
| parent | 6a264a38e54aeef6d06dd74f6d7a4fbc20f5ffd6 (diff) | |
| download | dots-1e880d8c5b923fe17b931c162d3fa875608d5d2f.tar.gz | |
feat: use VimEnter event instead of VeryLazy (#673)
Diffstat (limited to 'nvim/init.lua')
| -rw-r--r-- | nvim/init.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 3f53732..292ec07 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -258,9 +258,9 @@ require('lazy').setup { -- lazy loading plugins that don't need to be loaded immediately at startup. -- -- For example, in the following configuration, we use: - -- event = 'VeryLazy' + -- event = 'VimEnter' -- - -- which loads which-key after all the UI elements are loaded. Events can be + -- which loads which-key before all the UI elements are loaded. Events can be -- normal autocommands events (`:help autocmd-events`). -- -- Then, because we use the `config` key, the configuration only runs @@ -269,7 +269,7 @@ require('lazy').setup { { -- Useful plugin to show you pending keybinds. 'folke/which-key.nvim', - event = 'VeryLazy', -- Sets the loading event to 'VeryLazy' + event = 'VimEnter', -- Sets the loading event to 'VimEnter' config = function() -- This is the function that runs, AFTER loading require('which-key').setup() @@ -293,7 +293,7 @@ require('lazy').setup { { -- Fuzzy Finder (files, lsp, etc) 'nvim-telescope/telescope.nvim', - event = 'VeryLazy', + event = 'VimEnter', branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim', @@ -734,7 +734,7 @@ require('lazy').setup { }, -- Highlight todo, notes, etc in comments - { 'folke/todo-comments.nvim', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } }, + { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } }, { -- Collection of various small independent plugins/modules 'echasnovski/mini.nvim', |