From d5e48c8ea1a055337c00e305b4db8b9eea9e57ae Mon Sep 17 00:00:00 2001 From: BirdeeHub Date: Thu, 4 Jan 2024 16:40:23 -0800 Subject: [PATCH] whoops --- lua/lazy/core/config.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua index b82fa64..0ad715f 100644 --- a/lua/lazy/core/config.lua +++ b/lua/lazy/core/config.lua @@ -231,12 +231,12 @@ function M.setup(opts) M.me = Util.norm(vim.fn.fnamemodify(M.me, ":p:h:h:h:h")) if M.options.performance.rtp.reset then vim.opt.rtp = { - vim.options.performance.rtp.custom_config_dir, + M.options.performance.rtp.custom_config_dir, vim.fn.stdpath("data") .. "/site", M.me, vim.env.VIMRUNTIME, vim.fn.fnamemodify(vim.v.progpath, ":p:h:h") .. "/lib/nvim", - vim.options.performance.rtp.custom_config_dir .. "/after", + M.options.performance.rtp.custom_config_dir .. "/after", } end for _, path in ipairs(M.options.performance.rtp.paths) do