@@ -768,7 +768,7 @@ In practice this means that step 10 of |Neovim Initialization| is done by Lazy:
768
768
769
769
1. All the plugins’ `init ()` functions are executed
770
770
2. All plugins with `lazy= false` are loaded. This includes sourcing `/plugin ` and `/ftdetect` files. (`/after` will not be sourced yet)
771
- 3. All files from `/plugin ` and `/ftdetect` directories in you rtp are sourced (excluding `/after` )
771
+ 3. All files from `/plugin ` and `/ftdetect` directories in your rtp are sourced (excluding `/after` )
772
772
4. All `/after/ plugin ` files are sourced (this includes `/after` from plugins)
773
773
774
774
Files from runtime directories are always sourced in alphabetical order.
@@ -859,8 +859,8 @@ PACKER.NVIM ~
859
859
- `lock ` `pin`
860
860
- `disable= true` `enabled = false`
861
861
- `tag = ' *' ` `version = " *" `
862
- - `after` **not needed** for most use-cases. Use `dependencies` otherwise.
863
- - `wants` **not needed** for most use-cases. Use `dependencies` otherwise.
862
+ - `after` is **not needed** for most use-cases. Use `dependencies` otherwise.
863
+ - `wants` is **not needed** for most use-cases. Use `dependencies` otherwise.
864
864
- `config` don’t support string type, use `fun (LazyPlugin)` instead.
865
865
- `module` is auto-loaded. No need to specify
866
866
- `keys ` spec is | lazy.nvim-different |
@@ -979,7 +979,7 @@ If your plugin needs a build step, you can create a file `build.lua` or
979
979
`build/init.lua ` in the root of your repo. This file will be loaded when the
980
980
plugin is installed or updated.
981
981
982
- This makes it easier for users, so they no longer need to specify a `build`
982
+ This makes it easier for users, as they no longer need to specify a `build`
983
983
command.
984
984
985
985
0 commit comments