mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
docs for new options cleanup
This commit is contained in:
parent
32ef21ca20
commit
d54e289b5f
2 changed files with 10 additions and 8 deletions
|
@ -322,7 +322,7 @@ return {
|
||||||
dev = {
|
dev = {
|
||||||
-- directory where you store your local plugin projects
|
-- directory where you store your local plugin projects
|
||||||
path = "~/projects",
|
path = "~/projects",
|
||||||
-- you may include a list of local paths to also check. e.g. { '~/projects1', '~/projects1' }
|
-- you may include a list of local paths to also check. e.g. { '~/projects1', '~/projects2' }
|
||||||
extra_paths = nil,
|
extra_paths = nil,
|
||||||
---@type string[] plugins that match these patterns will use your local versions instead of being fetched from GitHub
|
---@type string[] plugins that match these patterns will use your local versions instead of being fetched from GitHub
|
||||||
patterns = {}, -- For example {"folke"}
|
patterns = {}, -- For example {"folke"}
|
||||||
|
@ -438,9 +438,10 @@ return {
|
||||||
-- "tutor",
|
-- "tutor",
|
||||||
-- "zipPlugin",
|
-- "zipPlugin",
|
||||||
},
|
},
|
||||||
-- to work around circumstances in which your config folder is
|
-- custom_config_dir exists to work around circumstances
|
||||||
-- not in the normal location when performance.rtp.reset = true
|
-- in which your config folder is -- not in the normal location,
|
||||||
-- such as when loading your config folder from the nix store.
|
-- and thus is unloaded when performance.rtp.reset = true
|
||||||
|
-- such as when loaded from the nix store
|
||||||
custom_config_dir = vim.fn.stdpath("config"),
|
custom_config_dir = vim.fn.stdpath("config"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -32,7 +32,7 @@ M.defaults = {
|
||||||
dev = {
|
dev = {
|
||||||
-- directory where you store your local plugin projects
|
-- directory where you store your local plugin projects
|
||||||
path = "~/projects",
|
path = "~/projects",
|
||||||
-- you may include a list of local paths to also check. e.g. { '~/projects1', '~/projects1' }
|
-- you may include a list of local paths to also check. e.g. { '~/projects1', '~/projects2' }
|
||||||
extra_paths = nil,
|
extra_paths = nil,
|
||||||
---@type string[] plugins that match these patterns will use your local versions instead of being fetched from GitHub
|
---@type string[] plugins that match these patterns will use your local versions instead of being fetched from GitHub
|
||||||
patterns = {}, -- For example {"folke"}
|
patterns = {}, -- For example {"folke"}
|
||||||
|
@ -148,9 +148,10 @@ M.defaults = {
|
||||||
-- "tutor",
|
-- "tutor",
|
||||||
-- "zipPlugin",
|
-- "zipPlugin",
|
||||||
},
|
},
|
||||||
-- to work around circumstances in which your config folder is
|
-- custom_config_dir exists to work around circumstances
|
||||||
-- not in the normal location when performance.rtp.reset = true
|
-- in which your config folder is -- not in the normal location,
|
||||||
-- such as when loading your config folder from the nix store.
|
-- and thus is unloaded when performance.rtp.reset = true
|
||||||
|
-- such as when loaded from the nix store
|
||||||
custom_config_dir = vim.fn.stdpath("config"),
|
custom_config_dir = vim.fn.stdpath("config"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue