[Pager] Add specific lazy conf

This commit is contained in:
2025-09-16 17:24:51 +02:00
parent 780253da94
commit 41e92f3aac
2 changed files with 24 additions and 0 deletions

23
lazy-conf-pager.lua Normal file
View File

@@ -0,0 +1,23 @@
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", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
spec = {
{ import = "plugins.nav" },
{ import = "plugins.style" },
{ import = "plugins.util" },
},
change_detection = {
notify = false, -- dont notify when plugins are changed
},
})