Skip to content

Commit 9bd1c94

Browse files
committed
feat(health): check for paths on the rtp from plugged or packer
1 parent b814d87 commit 9bd1c94

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lua/lazy/health.lua

+9
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ function M.check()
3030
vim.health.report_ok("no existing packages found by other package managers")
3131
end
3232

33+
for _, name in ipairs({ "packer", "plugged", "paq" }) do
34+
for _, path in ipairs(vim.opt.rtp:get()) do
35+
if path:find(name, 1, true) then
36+
vim.health.report_error("Found paths on the rtp from another plugin manager `" .. name .. "`")
37+
break
38+
end
39+
end
40+
end
41+
3342
local packer_compiled = vim.fn.stdpath("config") .. "/plugin/packer_compiled.lua"
3443
if vim.loop.fs_stat(packer_compiled) then
3544
vim.health.report_error("please remove the file `" .. packer_compiled .. "`")

0 commit comments

Comments
 (0)