From 15dd229ce81267f4ba4396d0469228c58c6963d9 Mon Sep 17 00:00:00 2001 From: Mohammad Moosazadeh Date: Sat, 1 Jun 2024 13:16:09 -0400 Subject: [PATCH] Add cmp-aync-path and cmp-buffer --- init.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index f7ac0e73..40db026e 100644 --- a/init.lua +++ b/init.lua @@ -699,7 +699,8 @@ require('lazy').setup({ -- nvim-cmp does not ship with all sources by default. They are split -- into multiple repos for maintenance purposes. 'hrsh7th/cmp-nvim-lsp', - 'hrsh7th/cmp-path', + 'FelipeLema/cmp-async-path', + 'hrsh7th/cmp-buffer', }, config = function() -- See `:help cmp` @@ -770,7 +771,8 @@ require('lazy').setup({ sources = { { name = 'nvim_lsp' }, { name = 'luasnip' }, - { name = 'path' }, + { name = 'async_path' }, + { name = 'buffer' }, }, } end,