From 96e9a2b7a3bbc112cf41748257b8ef97043b63bc Mon Sep 17 00:00:00 2001 From: star Date: Thu, 14 Dec 2023 22:33:10 +0800 Subject: [PATCH] feat(cmp): Replace the hrsh7th/cmp-path plugin with FelipeLema/cmp-async-path --- lua/lazyvim/plugins/coding.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/lazyvim/plugins/coding.lua b/lua/lazyvim/plugins/coding.lua index c6571433..430a3763 100644 --- a/lua/lazyvim/plugins/coding.lua +++ b/lua/lazyvim/plugins/coding.lua @@ -38,7 +38,7 @@ return { dependencies = { "hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-buffer", - "hrsh7th/cmp-path", + "FelipeLema/cmp-async-path", "saadparwaiz1/cmp_luasnip", }, opts = function() @@ -74,7 +74,7 @@ return { sources = cmp.config.sources({ { name = "nvim_lsp" }, { name = "luasnip" }, - { name = "path" }, + { name = "async_path" }, }, { { name = "buffer" }, }),