Skip to content

Commit 48b6a2b

Browse files
committed
improved startup time by 20ms...
1 parent fb22483 commit 48b6a2b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lua/user/plugins.lua

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ require("lazy").setup({
1212
'nvim-lualine/lualine.nvim',
1313
-- Plugin for auto pairs.
1414
{
15-
"windwp/nvim-autopairs", event = "InsertEnter",
15+
'windwp/nvim-autopairs', event = "InsertEnter",
1616
config = function()
1717
require("nvim-autopairs").setup {}
1818
end
1919
},
2020
-- Plugin for nvim-completion.
2121
{ 'hrsh7th/nvim-cmp', event = "InsertEnter" },
2222
-- Plugin for buffer completion.
23-
'hrsh7th/cmp-buffer',
23+
{ 'hrsh7th/cmp-buffer', event = "InsertEnter" },
2424
-- Plugin for path completion.
25-
'hrsh7th/cmp-path',
25+
{ 'hrsh7th/cmp-path', event = "InsertEnter" },
2626
-- Plugin for cmdline completion.
27-
{ 'hrsh7th/cmp-cmdline', event = 'VeryLazy' },
27+
{ 'hrsh7th/cmp-cmdline', event = "VeryLazy" },
2828
-- Plugin for snippets.
29-
'L3MON4D3/LuaSnip',
30-
'saadparwaiz1/cmp_luasnip',
29+
{ 'L3MON4D3/LuaSnip', event = "VeryLazy" },
30+
{ 'saadparwaiz1/cmp_luasnip', event = "VeryLazy" },
3131
-- Plugin for snippet collection.
3232
'OurCodeBase/friendly-snippets',
3333
})

0 commit comments

Comments
 (0)