first commit

This commit is contained in:
2026-01-04 09:14:52 +08:00
commit 91caa45aca
3 changed files with 393 additions and 0 deletions

10
lua/lazy_bootstrap.lua Normal file
View File

@@ -0,0 +1,10 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git", "clone", "--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable",
lazypath
})
end
vim.opt.rtp:prepend(lazypath)