mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-08 00:14:38 +02:00
feat: added LazyHealth
that loads all plugins and runs :checkhealth
This commit is contained in:
parent
f799b39eaf
commit
d9287391b7
1 changed files with 5 additions and 0 deletions
|
@ -185,6 +185,11 @@ function M.setup(opts)
|
|||
vim.api.nvim_create_user_command("LazyExtras", function()
|
||||
Util.extras.show()
|
||||
end, { desc = "Manage LazyVim extras" })
|
||||
|
||||
vim.api.nvim_create_user_command("LazyHealth", function()
|
||||
vim.cmd([[Lazy! load all]])
|
||||
vim.cmd([[checkhealth]])
|
||||
end, { desc = "Load all plugins and run :checkhealth" })
|
||||
end,
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue