diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt
index 1514b05..2a984e7 100644
--- a/doc/lazy.nvim.txt
+++ b/doc/lazy.nvim.txt
@@ -6,9 +6,10 @@ Table of Contents *lazy.nvim-table-of-contents*
1. π Getting Started |lazy.nvim-π-getting-started|
- β¨ Features |lazy.nvim-π-getting-started-β¨-features|
- β‘οΈ Requirements |lazy.nvim-π-getting-started-β‘οΈ-requirements|
- - Structured Setup |lazy.nvim-π-getting-started-structured-setup|
- - Single File Setup |lazy.nvim-π-getting-started-single-file-setup|
-2. π Plugin Spec |lazy.nvim-π-plugin-spec|
+2. π οΈ Installation |lazy.nvim-π οΈ-installation|
+ - Structured Setup |lazy.nvim-π οΈ-installation-structured-setup|
+ - Single File Setup |lazy.nvim-π οΈ-installation-single-file-setup|
+3. π Plugin Spec |lazy.nvim-π-plugin-spec|
- Source |lazy.nvim-π-plugin-spec-source|
- Loading |lazy.nvim-π-plugin-spec-loading|
- Setup |lazy.nvim-π-plugin-spec-setup|
@@ -18,16 +19,23 @@ Table of Contents *lazy.nvim-table-of-contents*
- Examples |lazy.nvim-π-plugin-spec-examples|
- Lazy Loading |lazy.nvim-π-plugin-spec-lazy-loading|
- Versioning |lazy.nvim-π-plugin-spec-versioning|
- - Lazy |lazy.nvim-π-plugin-spec-lazy|
- - Rockspec |lazy.nvim-π-plugin-spec-rockspec|
- - Packspec |lazy.nvim-π-plugin-spec-packspec|
- - π Highlight Groups |lazy.nvim-π-plugin-spec-π-highlight-groups|
-3. π Usage |lazy.nvim-π-usage|
+4. π¦ Packages |lazy.nvim-π¦-packages|
+ - Lazy |lazy.nvim-π¦-packages-lazy|
+ - Rockspec |lazy.nvim-π¦-packages-rockspec|
+ - Packspec |lazy.nvim-π¦-packages-packspec|
+5. βοΈ Configuration |lazy.nvim-βοΈ-configuration|
+ - π Highlight Groups|lazy.nvim-βοΈ-configuration-π-highlight-groups|
+6. π Usage |lazy.nvim-π-usage|
- βΆοΈ Startup Sequence |lazy.nvim-π-usage-βΆοΈ-startup-sequence|
- π Commands |lazy.nvim-π-usage-π-commands|
- π User Events |lazy.nvim-π-usage-π-user-events|
- β Uninstalling |lazy.nvim-π-usage-β-uninstalling|
-4. Links |lazy.nvim-links|
+ - π Lockfile |lazy.nvim-π-usage-π-lockfile|
+ - π¦ Migration Guide |lazy.nvim-π-usage-π¦-migration-guide|
+ - β‘ Profiling & Debug |lazy.nvim-π-usage-β‘-profiling-&-debug|
+ - π Structuring Your Plugins|lazy.nvim-π-usage-π-structuring-your-plugins|
+7. π Plugin Developers |lazy.nvim-π-plugin-developers|
+8. Links |lazy.nvim-links|
==============================================================================
1. π Getting Started *lazy.nvim-π-getting-started*
@@ -61,9 +69,10 @@ Table of Contents *lazy.nvim-table-of-contents*
- Neovim >= **0.8.0** (needs to be built with **LuaJIT**)
- Git >= **2.19.0** (for partial clones support)
- a Nerd Font **(optional)**
- # π οΈ Installation
-import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem";
+
+==============================================================================
+2. π οΈ Installation *lazy.nvim-π οΈ-installation*
There are multiple ways to install **lazy.nvim**. The **Structured Setup** is
the recommended way, but you can also use the **Single File Setup** if you
@@ -75,7 +84,7 @@ all available options.
-STRUCTURED SETUP *lazy.nvim-π-getting-started-structured-setup*
+STRUCTURED SETUP *lazy.nvim-π οΈ-installation-structured-setup*
>lua
require("config.lazy")
@@ -118,7 +127,7 @@ file should return a table with the plugins you want to install.
For more info see Structuring Your Plugins
-SINGLE FILE SETUP *lazy.nvim-π-getting-started-single-file-setup*
+SINGLE FILE SETUP *lazy.nvim-π οΈ-installation-single-file-setup*
>lua
-- Bootstrap lazy.nvim
@@ -152,7 +161,7 @@ SINGLE FILE SETUP *lazy.nvim-π-getting-started-single-file-setup*
==============================================================================
-2. π Plugin Spec *lazy.nvim-π-plugin-spec*
+3. π Plugin Spec *lazy.nvim-π-plugin-spec*
SOURCE *lazy.nvim-π-plugin-spec-source*
@@ -476,7 +485,10 @@ EXAMPLES ~
- `>=1.2.3`: any version that is greater than or equal to `1.2.3`, such as `1.2.3`, `1.3.0`, `1.4.5`, etc.
- `<1.2.3`: any version that is less than `1.2.3`, such as `1.1.0`, `1.0.5`, etc.
- `<=1.2.3`: any version that is less than or equal to `1.2.3`, such as `1.2.3`, `1.1.0`, `1.0.5`, etc
- # π¦ Packages
+
+
+==============================================================================
+4. π¦ Packages *lazy.nvim-π¦-packages*
**lazy.nvim** supports three ways for plugins to define their dependencies and
configuration.
@@ -491,24 +503,28 @@ finds a package will be used.
-LAZY *lazy.nvim-π-plugin-spec-lazy*
+LAZY *lazy.nvim-π¦-packages-lazy*
Using a `lazy.lua` file is the recommended way to define your plugin
dependencies and configuration. Syntax is the same as any plugin spec.
-ROCKSPEC *lazy.nvim-π-plugin-spec-rockspec*
+ROCKSPEC *lazy.nvim-π¦-packages-rockspec*
When a plugin contains a `*-scm-1.rockspec` file, **lazy.nvim** will
automatically load its `rocks` dependencies.
-PACKSPEC *lazy.nvim-π-plugin-spec-packspec*
+PACKSPEC *lazy.nvim-π¦-packages-packspec*
Supports the pkg.json
format, with
a lazy extension in `lazy`. `lazy` can contain any valid lazy spec fields. They
-will be added to the pluginβs spec. # βοΈ Configuration
+will be added to the pluginβs spec.
+
+
+==============================================================================
+5. βοΈ Configuration *lazy.nvim-βοΈ-configuration*
**lazy.nvim** comes with the following defaults:
@@ -736,7 +752,7 @@ If you donβt want to use a Nerd Font, you can replace the icons with Unicode s
<
-π HIGHLIGHT GROUPS *lazy.nvim-π-plugin-spec-π-highlight-groups*
+π HIGHLIGHT GROUPS *lazy.nvim-βοΈ-configuration-π-highlight-groups*
-----------------------------------------------------------------------
Highlight Group Default Group Description
@@ -811,7 +827,7 @@ If you donβt want to use a Nerd Font, you can replace the icons with Unicode s
-----------------------------------------------------------------------
==============================================================================
-3. π Usage *lazy.nvim-π-usage*
+6. π Usage *lazy.nvim-π-usage*
βΆοΈ STARTUP SEQUENCE *lazy.nvim-π-usage-βΆοΈ-startup-sequence*
@@ -985,7 +1001,10 @@ directories:
- **lockfile**: `~/.config/nvim/lazy-lock.json`
- Paths can differ if you changed `XDG` environment variables. ## π Lockfile
+ Paths can differ if you changed `XDG` environment variables.
+
+π LOCKFILE *lazy.nvim-π-usage-π-lockfile*
+
After every **update**, the local lockfile (`lazy-lock.json`) is updated with
the installed revisions. It is recommended to have this file under version
control.
@@ -994,7 +1013,10 @@ If you use your Neovim config on multiple machines, using the lockfile, you can
ensure that the same version of every plugin is installed.
If you are on another machine, you can do `:Lazy restore`, to update all your
-plugins to the version from the lockfile. ## π¦ Migration Guide
+plugins to the version from the lockfile.
+
+
+π¦ MIGRATION GUIDE *lazy.nvim-π-usage-π¦-migration-guide*
PACKER.NVIM ~
@@ -1034,7 +1056,9 @@ PAQ-NVIM ~
- `as` β‘οΈ `name`
- `opt` β‘οΈ `lazy`
- `run` β‘οΈ `build`
- ## β‘ Profiling & Debug
+
+
+β‘ PROFILING & DEBUG *lazy.nvim-π-usage-β‘-profiling-&-debug*
Great care has been taken to make the startup code (`lazy.core`) as efficient
as possible. During startup, all Lua files used before `VimEnter` or
@@ -1054,7 +1078,8 @@ load your plugins.
See an overview of active lazy-loading handlers and whatβs in the module
cache.
-## π Structuring Your Plugins
+
+π STRUCTURING YOUR PLUGINS*lazy.nvim-π-usage-π-structuring-your-plugins*
Some users may want to split their plugin specs in multiple files. Instead of
passing a spec table to `setup()`, you can use a Lua module. The specs from the
@@ -1123,7 +1148,11 @@ same plugin to your local specs, adding any keys you want to override / merge.
`opts`, `dependencies`, `cmd`, `event`, `ft` and `keys` are always merged with
the parent spec. Any other property will override the property from the parent
-spec. # π Plugin Developers
+spec.
+
+
+==============================================================================
+7. π Plugin Developers *lazy.nvim-π-plugin-developers*
To make it easier for users to install your plugin, you can include a package
spec in your repo.
@@ -1136,13 +1165,11 @@ This makes it easier for users, as they no longer need to specify a `build`
command.
==============================================================================
-4. Links *lazy.nvim-links*
+8. Links *lazy.nvim-links*
1. *image*: https://user-images.githubusercontent.com/292349/208301737-68fb279c-ba70-43ef-a369-8c3e8367d6b1.png
-2. *@theme/Tabs*:
-3. *@theme/TabItem*:
-4. *image*: https://user-images.githubusercontent.com/292349/208301766-5c400561-83c3-4811-9667-1ec4bb3c43b8.png
-5. *image*: https://user-images.githubusercontent.com/292349/208301790-7eedbfa5-d202-4e70-852e-de68aa47233b.png
+2. *image*: https://user-images.githubusercontent.com/292349/208301766-5c400561-83c3-4811-9667-1ec4bb3c43b8.png
+3. *image*: https://user-images.githubusercontent.com/292349/208301790-7eedbfa5-d202-4e70-852e-de68aa47233b.png
Generated by panvimdoc