Skip to content

Commit 992c679

Browse files
committed
fix: always set Config.me regardless of reset rtp
1 parent df6c986 commit 992c679

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lua/lazy/core/config.lua

+3-2
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,10 @@ function M.setup(spec, opts)
120120
if M.options.performance.reset_packpath then
121121
vim.go.packpath = ""
122122
end
123+
124+
M.me = debug.getinfo(1, "S").source:sub(2)
125+
M.me = Util.norm(vim.fn.fnamemodify(M.me, ":p:h:h:h:h"))
123126
if M.options.performance.rtp.reset then
124-
M.me = debug.getinfo(1, "S").source:sub(2)
125-
M.me = Util.norm(vim.fn.fnamemodify(M.me, ":p:h:h:h:h"))
126127
vim.opt.rtp = {
127128
M.me,
128129
vim.env.VIMRUNTIME,

0 commit comments

Comments
 (0)