@@ -290,7 +290,7 @@ return {
290
290
performance = {
291
291
cache = {
292
292
enabled = true ,
293
- path = vim .fn .stdpath (" state" ) .. " /lazy.state " ,
293
+ path = vim .fn .stdpath (" state" ) .. " /lazy/cache " ,
294
294
-- Once one of the following events triggers, caching will be disabled.
295
295
-- To cache all modules, set this to `{}`, but that is not recommended.
296
296
-- The default is to disable on:
@@ -335,20 +335,21 @@ Alternatively you can start any operation with a specific command, sub command o
335
335
336
336
<!-- commands:start -->
337
337
338
- | Command | Lua | Key Mapping | Description |
339
- | --------------------------------- | --------------------------- | ----------- | ------------------------------------------------------ |
340
- | ` :Lazy home ` or ` :LazyHome ` | ` require("lazy").home() ` | ` <H> ` | Go back to plugin list |
341
- | ` :Lazy install ` or ` :LazyInstall ` | ` require("lazy").install() ` | ` <I> ` | Install missing plugins |
342
- | ` :Lazy update ` or ` :LazyUpdate ` | ` require("lazy").update() ` | ` <U> ` | Update all plugins. This will also update the lockfile |
343
- | ` :Lazy sync ` or ` :LazySync ` | ` require("lazy").sync() ` | ` <S> ` | Run install, clean and update |
344
- | ` :Lazy clean ` or ` :LazyClean ` | ` require("lazy").clean() ` | ` <X> ` | Clean plugins that are no longer needed |
345
- | ` :Lazy check ` or ` :LazyCheck ` | ` require("lazy").check() ` | ` <C> ` | Check for updates and show the log (git fetch) |
346
- | ` :Lazy log ` or ` :LazyLog ` | ` require("lazy").log() ` | ` <L> ` | Show recent updates for all plugins |
347
- | ` :Lazy restore ` or ` :LazyRestore ` | ` require("lazy").restore() ` | ` <R> ` | Updates all plugins to the state in the lockfile |
348
- | ` :Lazy profile ` or ` :LazyProfile ` | ` require("lazy").profile() ` | ` <P> ` | Show detailed profiling |
349
- | ` :Lazy debug ` or ` :LazyDebug ` | ` require("lazy").debug() ` | ` <D> ` | Show debug information |
350
- | ` :Lazy help ` or ` :LazyHelp ` | ` require("lazy").help() ` | ` <?> ` | Toggle this help page |
351
- | ` :Lazy clear ` or ` :LazyClear ` | ` require("lazy").clear() ` | | Clear finished tasks |
338
+ | Command | Lua | Key Mapping | Description |
339
+ | --------------- | --------------------------- | ----------- | --------------------------------------------------------------------------------------------- |
340
+ | ` :Lazy home ` | ` require("lazy").home() ` | ` <H> ` | Go back to plugin list |
341
+ | ` :Lazy install ` | ` require("lazy").install() ` | ` <I> ` | Install missing plugins |
342
+ | ` :Lazy update ` | ` require("lazy").update() ` | ` <U> ` | Update all plugins. This will also update the lockfile |
343
+ | ` :Lazy sync ` | ` require("lazy").sync() ` | ` <S> ` | Run install, clean and update |
344
+ | ` :Lazy clean ` | ` require("lazy").clean() ` | ` <X> ` | Clean plugins that are no longer needed |
345
+ | ` :Lazy check ` | ` require("lazy").check() ` | ` <C> ` | Check for updates and show the log (git fetch) |
346
+ | ` :Lazy log ` | ` require("lazy").log() ` | ` <L> ` | Show recent updates for all plugins |
347
+ | ` :Lazy restore ` | ` require("lazy").restore() ` | ` <R> ` | Updates all plugins to the state in the lockfile |
348
+ | ` :Lazy profile ` | ` require("lazy").profile() ` | ` <P> ` | Show detailed profiling |
349
+ | ` :Lazy debug ` | ` require("lazy").debug() ` | ` <D> ` | Show debug information |
350
+ | ` :Lazy help ` | ` require("lazy").help() ` | ` <?> ` | Toggle this help page |
351
+ | ` :Lazy clear ` | ` require("lazy").clear() ` | | Clear finished tasks |
352
+ | ` :Lazy load ` | ` require("lazy").load() ` | | Load a plugin that has not been loaded yet. Similar to ` :packadd ` . Like ` :Lazy load foo.nvim ` |
352
353
353
354
<!-- commands:end -->
354
355
0 commit comments