removed lazy loading

This commit is contained in:
Oliver Hartmann 2022-07-31 13:56:40 +02:00
parent 6a8c84250f
commit deb6dea93b

View File

@ -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({