From deb6dea93b1f995282345f4a4d7da8f03a778858 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Sun, 31 Jul 2022 13:56:40 +0200 Subject: [PATCH] removed lazy loading --- lua/my_plugins.lua | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/lua/my_plugins.lua b/lua/my_plugins.lua index 24a843f..baacbcc 100644 --- a/lua/my_plugins.lua +++ b/lua/my_plugins.lua @@ -84,19 +84,19 @@ return require('packer').startup(function() use({ 'hrsh7th/nvim-cmp', requires = { - { 'hrsh7th/cmp-buffer', after = 'nvim-cmp' }, - { 'hrsh7th/cmp-nvim-lsp', after = 'nvim-cmp' }, - { 'L3MON4D3/LuaSnip', after = 'nvim-cmp' }, - { 'saadparwaiz1/cmp_luasnip', after = { 'nvim-cmp', 'LuaSnip' } }, - { 'hrsh7th/cmp-nvim-lua', after = 'nvim-cmp' }, - { 'octaltree/cmp-look', after = 'nvim-cmp' }, - { 'hrsh7th/cmp-path', after = 'nvim-cmp' }, - { 'hrsh7th/cmp-calc', after = 'nvim-cmp' }, - { 'f3fora/cmp-spell', after = 'nvim-cmp' }, - { 'hrsh7th/cmp-emoji', after = 'nvim-cmp' }, - { 'hrsh7th/cmp-cmdline', after = 'nvim-cmp' }, - { 'ray-x/cmp-treesitter', after = 'nvim-cmp' }, - { 'hrsh7th/cmp-nvim-lsp-signature-help', after = 'nvim-cmp' } + { 'hrsh7th/cmp-buffer'}, + { 'hrsh7th/cmp-nvim-lsp'}, + { 'L3MON4D3/LuaSnip'}, + { 'saadparwaiz1/cmp_luasnip'}, + { 'hrsh7th/cmp-nvim-lua'}, + { 'octaltree/cmp-look'}, + { 'hrsh7th/cmp-path'}, + { 'hrsh7th/cmp-calc'}, + { 'f3fora/cmp-spell'}, + { 'hrsh7th/cmp-emoji'}, + { 'hrsh7th/cmp-cmdline'}, + { 'ray-x/cmp-treesitter'}, + { 'hrsh7th/cmp-nvim-lsp-signature-help'} }, config = get_setup('cmp'), }) @@ -115,7 +115,7 @@ return require('packer').startup(function() }) use({ 'p00f/nvim-ts-rainbow', requires = 'nvim-treesitter/nvim-treesitter', - after = 'nvim-treesitter' }) + }) use({ 'windwp/nvim-autopairs', config = get_setup('nvim-autopairs'), @@ -159,13 +159,11 @@ return require('packer').startup(function() use({ 'danymat/neogen', requires = 'nvim-treesitter/nvim-treesitter', - after = 'nvim-treesitter', config = get_setup('neogen'), }) use({ 'stevearc/dressing.nvim' }) use({ 'nvim-treesitter/nvim-treesitter-textobjects', - after = 'nvim-treesitter', requires = 'nvim-treesitter/nvim-treesitter', }) use({