mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 08:35:53 +02:00
feat(config): allow disabling the order check with vim.g.lazyvim_check_order = false
This commit is contained in:
parent
2a608f00d4
commit
0bbce1775b
1 changed files with 4 additions and 0 deletions
|
@ -212,6 +212,10 @@ function M.setup(opts)
|
|||
"vscode",
|
||||
})
|
||||
|
||||
if vim.g.lazyvim_check_order == false then
|
||||
return
|
||||
end
|
||||
|
||||
-- Check lazy.nvim import order
|
||||
local imports = require("lazy.core.config").spec.modules
|
||||
local function find(pat, last)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue