From 4ae95c97725f6a85378c462cf027a86f9ef496a5 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Wed, 23 Aug 2023 18:00:24 +0200 Subject: [PATCH] fixed cmp override bug --- lua/custom/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/custom/plugins.lua b/lua/custom/plugins.lua index aed54c0..956677e 100644 --- a/lua/custom/plugins.lua +++ b/lua/custom/plugins.lua @@ -48,7 +48,7 @@ require "custom.configs.lspconfig" { "hrsh7th/nvim-cmp", opts = function () - local M = require "plugins.configs.cmp", + local M = require "plugins.configs.cmp" table.insert(M.sources, {name = "crates"}) return M end