From f0126ce586f5982341dd478e81b916042fd07be2 Mon Sep 17 00:00:00 2001 From: ofrades Date: Mon, 2 Jan 2023 14:42:35 +0000 Subject: [PATCH] fix: error when installing --- lua/lazyvim/config/lazy.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lua/lazyvim/config/lazy.lua b/lua/lazyvim/config/lazy.lua index 6e46b6eb..2ccec961 100644 --- a/lua/lazyvim/config/lazy.lua +++ b/lua/lazyvim/config/lazy.lua @@ -11,8 +11,7 @@ if not vim.loop.fs_stat(lazypath) then end vim.opt.rtp:prepend(vim.env.LAZY or lazypath) -require("lazy").setup({ - spec = "lazyvim.plugins", +require("lazy").setup("lazyvim.plugins", { defaults = { lazy = true, version = "*" }, install = { colorscheme = { "tokyonight", "habamax" } }, checker = { enabled = true },