From 9361934d8a6848d0cf740cfeaf54eef070382c32 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Tue, 27 Dec 2022 14:55:11 +0100 Subject: [PATCH] use some very lazy things --- lua/my_lazy.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lua/my_lazy.lua b/lua/my_lazy.lua index a4de69f..fba444b 100644 --- a/lua/my_lazy.lua +++ b/lua/my_lazy.lua @@ -45,6 +45,7 @@ local plugins = { { 'p00f/nvim-ts-rainbow', dependencies = 'nvim-treesitter/nvim-treesitter', + event = 'VeryLazy' }, { 'nvim-telescope/telescope.nvim', @@ -73,6 +74,7 @@ local plugins = { config = function() require('setup/project') end, + event = 'VeryLazy' }, { 'eddyekofo94/gruvbox-flat.nvim', @@ -162,7 +164,7 @@ local plugins = { config = function() require('setup/my_lspconfig') end, - event = { "InsertEnter", "CursorMoved" }, + event = 'VeryLazy' }, { 'akinsho/toggleterm.nvim', @@ -203,7 +205,8 @@ local plugins = { dependencies = { 'tpope/vim-repeat' }, config = function() require('setup/my_leap') - end + end, + event = 'VeryLazy' }, { 'mfussenegger/nvim-dap',