mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 16:41:43 +05:30
16 lines
468 B
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,
|
|
}
|
|
})
|