We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b814d87 commit 9bd1c94Copy full SHA for 9bd1c94
lua/lazy/health.lua
@@ -30,6 +30,15 @@ function M.check()
30
vim.health.report_ok("no existing packages found by other package managers")
31
end
32
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
40
41
+
42
local packer_compiled = vim.fn.stdpath("config") .. "/plugin/packer_compiled.lua"
43
if vim.loop.fs_stat(packer_compiled) then
44
vim.health.report_error("please remove the file `" .. packer_compiled .. "`")
0 commit comments