use some very lazy things

This commit is contained in:
Oliver Hartmann 2022-12-27 14:55:11 +01:00
parent 4f0bab54b5
commit 9361934d8a

View File

@ -45,6 +45,7 @@ local plugins = {
{ {
'p00f/nvim-ts-rainbow', 'p00f/nvim-ts-rainbow',
dependencies = 'nvim-treesitter/nvim-treesitter', dependencies = 'nvim-treesitter/nvim-treesitter',
event = 'VeryLazy'
}, },
{ {
'nvim-telescope/telescope.nvim', 'nvim-telescope/telescope.nvim',
@ -73,6 +74,7 @@ local plugins = {
config = function() config = function()
require('setup/project') require('setup/project')
end, end,
event = 'VeryLazy'
}, },
{ {
'eddyekofo94/gruvbox-flat.nvim', 'eddyekofo94/gruvbox-flat.nvim',
@ -162,7 +164,7 @@ local plugins = {
config = function() config = function()
require('setup/my_lspconfig') require('setup/my_lspconfig')
end, end,
event = { "InsertEnter", "CursorMoved" }, event = 'VeryLazy'
}, },
{ {
'akinsho/toggleterm.nvim', 'akinsho/toggleterm.nvim',
@ -203,7 +205,8 @@ local plugins = {
dependencies = { 'tpope/vim-repeat' }, dependencies = { 'tpope/vim-repeat' },
config = function() config = function()
require('setup/my_leap') require('setup/my_leap')
end end,
event = 'VeryLazy'
}, },
{ {
'mfussenegger/nvim-dap', 'mfussenegger/nvim-dap',