From d37d2c2493b86d90e0556e787492eb6b71df959f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Kmie=C4=87?= Date: Sun, 3 Mar 2024 23:38:16 +0100 Subject: [PATCH] Nvim: VeryLazy load telescope and which-key --- .config/nvim/lua/plugins/telescope.lua | 1 + .config/nvim/lua/plugins/which.lua | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/telescope.lua b/.config/nvim/lua/plugins/telescope.lua index 6e80cde..18ac6b9 100644 --- a/.config/nvim/lua/plugins/telescope.lua +++ b/.config/nvim/lua/plugins/telescope.lua @@ -5,6 +5,7 @@ return { 'molecule-man/telescope-menufacture', 'xiyaowong/telescope-emoji.nvim', }, + event = 'VeryLazy', --cmd = ":Telescope", config = function() -- require('telescope').load_extension('ultisnips') diff --git a/.config/nvim/lua/plugins/which.lua b/.config/nvim/lua/plugins/which.lua index e54f7d5..87f7424 100644 --- a/.config/nvim/lua/plugins/which.lua +++ b/.config/nvim/lua/plugins/which.lua @@ -1,4 +1,5 @@ return { 'folke/which-key.nvim', - config = true + config = true, + event = 'VeryLazy' }