docs: fix typo (#1230)

This commit is contained in:
Johnny Horvi 2024-01-20 15:08:08 +01:00 committed by GitHub
parent d0d410bc22
commit 89e6840d8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -654,7 +654,7 @@ In practice this means that step 10 of [Neovim Initialization](https://neovim.io
1. All the plugins' `init()` functions are executed 1. All the plugins' `init()` functions are executed
2. All plugins with `lazy=false` are loaded. This includes sourcing `/plugin` and `/ftdetect` files. (`/after` will not be sourced yet) 2. All plugins with `lazy=false` are loaded. This includes sourcing `/plugin` and `/ftdetect` files. (`/after` will not be sourced yet)
3. All files from `/plugin` and `/ftdetect` directories in you rtp are sourced (excluding `/after`) 3. All files from `/plugin` and `/ftdetect` directories in your rtp are sourced (excluding `/after`)
4. All `/after/plugin` files are sourced (this includes `/after` from plugins) 4. All `/after/plugin` files are sourced (this includes `/after` from plugins)
Files from runtime directories are always sourced in alphabetical order. Files from runtime directories are always sourced in alphabetical order.
@ -824,7 +824,7 @@ To uninstall **lazy.nvim**, you need to remove the following files and directori
If your plugin needs a build step, you can create a file `build.lua` or `build/init.lua` If your plugin needs a build step, you can create a file `build.lua` or `build/init.lua`
in the root of your repo. This file will be loaded when the plugin is installed or updated. in the root of your repo. This file will be loaded when the plugin is installed or updated.
This makes it easier for users, so they no longer need to specify a `build` command. This makes it easier for users, as they no longer need to specify a `build` command.
## 📦 Other Neovim Plugin Managers in Lua ## 📦 Other Neovim Plugin Managers in Lua