Files
dotfiles/common/.config/nvim/custom.nvim/lua/pratik/lazy.lua

16 lines
468 B
Lua

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(vim.env.LAZY or lazypath)
require("lazy").setup({
{ import = "pratik.plugins" },
{ import = "pratik.plugins.ide" },
{ import = "pratik.plugins.looks" },
}, {
change_detection = {
notify = false,
}
})