init dotfiles with nvim config

This commit is contained in:
2026-01-04 09:52:08 +08:00
commit 29c6dd54a9
37 changed files with 1288 additions and 0 deletions

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)