feat(lazy): set `config.defaults.lazy = false`. Better for new users

This commit is contained in:
Folke Lemaitre 2023-01-16 16:53:22 +01:00
parent 888600e7ff
commit 979dfdc5bb
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,9 @@ require("lazy").setup({
-- { import = "lazyvim.plugins.extras.lang.json" },
},
defaults = {
lazy = true, -- every plugin is lazy-loaded by default
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
-- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default.
lazy = false,
version = "*", -- try installing the latest stable version for plugins that support semver
},
install = { colorscheme = { "tokyonight", "habamax" } },