Migrate to vim.pack

This commit is contained in:
2026-08-02 12:00:14 -04:00
parent 1f62ddd4ac
commit 22a1fcb0b5
16 changed files with 795 additions and 663 deletions
+1 -16
View File
@@ -2,19 +2,4 @@ vim.g.mapleader = " "
vim.g.maplocalleader = " "
require("config")
-- Bootstrap lazy.nvim
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)
require("lazy").setup("plugins", {
change_detection = { notify = false },
})
require("plugins")