Skip to content

Commit 1ee4e8b

Browse files
committed
fix: updated the bootstrap code
1 parent 5128d89 commit 1ee4e8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/lazy/init.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function M.stats()
6868
end
6969

7070
function M.bootstrap()
71-
local lazypath = vim.fn.stdpath("data") .. "/site/pack/lazy/opt/lazy.nvim"
71+
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
7272
if not vim.loop.fs_stat(lazypath) then
7373
vim.fn.system({
7474
"git",
@@ -78,7 +78,7 @@ function M.bootstrap()
7878
"https://github.com/folke/lazy.nvim.git",
7979
lazypath,
8080
})
81-
vim.opt.runtimepath:append(lazypath)
81+
vim.opt.runtimepath:prepend(lazypath)
8282
end
8383
end
8484

0 commit comments

Comments
 (0)