This commit is contained in:
2026-01-16 22:15:49 +03:00
parent 29938c53db
commit 1005194679
38 changed files with 364 additions and 1937 deletions

13
lua/core/lazy.lua Normal file
View File

@@ -0,0 +1,13 @@
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",
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
-- load plugin list
require("lazy").setup(require("plugins"))