From 99f6fc59616bc6844407793dae6e124f2f675924 Mon Sep 17 00:00:00 2001 From: jo-project Date: Mon, 18 Dec 2023 01:58:28 +1100 Subject: [PATCH] Update --- lua/lazyvim/plugins/coding.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lua/lazyvim/plugins/coding.lua b/lua/lazyvim/plugins/coding.lua index 4f132dc..7edcc43 100644 --- a/lua/lazyvim/plugins/coding.lua +++ b/lua/lazyvim/plugins/coding.lua @@ -26,7 +26,8 @@ return { dependencies = { "hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-buffer", - "hrsh7th/cmp-path", + "FelipeLema/cmp-async-path", + -- "hrsh7th/cmp-path", }, opts = function() vim.api.nvim_set_hl(0, "CmpGhostText", { link = "Comment", default = true }) @@ -71,7 +72,8 @@ return { }), sources = cmp.config.sources({ { name = "nvim_lsp" }, - { name = "path" }, + { name = "async_path" }, + -- { name = "path" }, }, { { name = "buffer" }, }),