Update: nvim-cmp lazy loading.

This commit is contained in:
psychhim
2025-10-12 14:31:52 +05:30
parent d6c29b3d55
commit 49ea239f75

View File

@@ -120,18 +120,16 @@ require('lazy').setup({
},
{ -- Autocompletion
'hrsh7th/nvim-cmp',
event = 'InsertEnter',
dependencies = {
-- Snippet Engine & its associated nvim-cmp source
'L3MON4D3/LuaSnip',
dependencies = { 'rafamadriz/friendly-snippets' },
'saadparwaiz1/cmp_luasnip',
-- Adds LSP completion capabilities
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-path',
-- Adds a number of user-friendly snippets
'rafamadriz/friendly-snippets',
},
},