From 8ed830ea361339922eec68d8c9600dae67801682 Mon Sep 17 00:00:00 2001 From: William Hsieh Date: Thu, 26 Sep 2024 15:05:16 +0800 Subject: [PATCH] perf(cmp): use the perf fork until the PR is merged ref: https://github.com/hrsh7th/nvim-cmp/pull/1980 --- config/nvim/lazy-lock.json | 2 +- config/nvim/lua/plugins/cmp.lua | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config/nvim/lazy-lock.json b/config/nvim/lazy-lock.json index 20806672..906b8f37 100644 --- a/config/nvim/lazy-lock.json +++ b/config/nvim/lazy-lock.json @@ -53,7 +53,7 @@ "nui.nvim": { "branch": "main", "commit": "b58e2bfda5cea347c9d58b7f11cf3012c7b3953f" }, "nvim-autopairs": { "branch": "master", "commit": "ffc139f2a96640ca6c4d3dff9b95b7b9eace87ae" }, "nvim-bqf": { "branch": "main", "commit": "1b24dc6050c34e8cd377b6b4cd6abe40509e0187" }, - "nvim-cmp": { "branch": "main", "commit": "ae644feb7b67bf1ce4260c231d1d4300b19c6f30" }, + "nvim-cmp": { "branch": "perf-up", "commit": "a475d8b8b282fda2d18f9fbdebba401b405cfecd" }, "nvim-colorizer.lua": { "branch": "master", "commit": "0671e0eabc6842676d3310370e8fae4e1c51d7f9" }, "nvim-fundo": { "branch": "main", "commit": "ac9c9372c4bf677721e24f144ef29d3a05c2b589" }, "nvim-lspconfig": { "branch": "master", "commit": "eb36e0185ad4b92b0999fb698428f2966334d2c1" }, diff --git a/config/nvim/lua/plugins/cmp.lua b/config/nvim/lua/plugins/cmp.lua index 3cf0f7aa..c5b520ce 100644 --- a/config/nvim/lua/plugins/cmp.lua +++ b/config/nvim/lua/plugins/cmp.lua @@ -1,5 +1,6 @@ local M = { - 'hrsh7th/nvim-cmp', + "yioneko/nvim-cmp", + branch = "perf-up", event = { "InsertEnter", "CmdlineEnter" }, dependencies = { "hrsh7th/cmp-buffer",