mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-19 04:46:45 +00:00
refactor: renamed Config.opt => Config.defaults.opt
This commit is contained in:
parent
5d81c5062b
commit
334f32e595
2 changed files with 7 additions and 4 deletions
|
@ -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[]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue