Skip to content

Commit ace646b

Browse files
committed
debug pipeline
1 parent c823290 commit ace646b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lua/qvim/bootstrap.lua

+6
Original file line numberDiff line numberDiff line change
@@ -148,13 +148,19 @@ function M:init()
148148
local log = require("qvim.log")
149149
log:setup()
150150

151+
print("pre lazy")
152+
print(vim.inspect(vim.opt.rtp:get()))
151153
require("qvim.core.manager"):init({
152154
package_root = self.qvim_pack_dir,
153155
install_path = self.lazy_install_dir,
154156
})
155157

158+
print("post lazy")
159+
print(vim.inspect(vim.opt.rtp:get()))
156160
vim.opt.rtp = self:bootstrap()
157161

162+
print("post bootstrap")
163+
print(vim.inspect(vim.opt.rtp:get()))
158164
require("qvim.config"):init()
159165

160166
return self

0 commit comments

Comments
 (0)