mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
feat(extras): expose prios to users for customization
This commit is contained in:
parent
13a4a84e34
commit
bd275611e9
1 changed files with 4 additions and 0 deletions
|
|
@ -10,6 +10,10 @@ local prios = {
|
|||
["lazyvim.plugins.extras.editor.outline"] = 100,
|
||||
}
|
||||
|
||||
if vim.g.xtras_prios then
|
||||
prios = vim.tbl_deep_extend("force", prios, vim.g.xtras_prios or {})
|
||||
end
|
||||
|
||||
---@type string[]
|
||||
local extras = LazyVim.dedup(LazyVim.config.json.data.extras)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue