This commit is contained in:
RingOfStorms (Joshua Bell) 2023-12-01 14:53:16 -06:00
parent ff3be5a3db
commit eb6300a3d0
5 changed files with 15 additions and 137 deletions

View file

@ -15,9 +15,12 @@ if not vim.loop.fs_stat(lazypath) then
vim.api.nvim_err_writeln("Error cloning lazy.nvim repository...\n\n" .. output)
end
end
vim.opt.rtp:prepend(lazypath)
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
require("lazy").setup("plugins", {
require("lazy").setup({
spec = {
{ import = "plugins" },
},
change_detection = {
enabled = false,
},