refactor: renamed Config.opt => Config.defaults.opt

This commit is contained in:
Folke Lemaitre 2022-11-30 23:08:40 +01:00
parent 5d81c5062b
commit 334f32e595
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
2 changed files with 7 additions and 4 deletions

View file

@ -4,8 +4,11 @@ local M = {}
---@class LazyConfig
M.defaults = {
opt = true,
plugins = "config.plugins",
defaults = {
opt = false, -- should plugins default to "opt" or "start"
-- version = "*", -- enable this to try installing the latest stable versions of plugins
},
dev = {
path = vim.fn.expand("~/projects"), -- the path where you store your projects
---@type string[]