From ca430184b3fdf6103c9ebb76e56e49f03b1dbb5f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 20 Dec 2022 09:25:55 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/lazy.nvim.txt | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt index 1fd4a65..62b7b26 100644 --- a/doc/lazy.nvim.txt +++ b/doc/lazy.nvim.txt @@ -15,7 +15,7 @@ Table of Contents *lazy.nvim-table-of-contents* - 🪲 Debug |lazy.nvim-🪲-debug| - Startup Sequence |lazy.nvim-startup-sequence| - Structuring Your Plugins |lazy.nvim-structuring-your-plugins| - - Differences with Packer |lazy.nvim-differences-with-packer| + - Migration Guide |lazy.nvim-migration-guide| - Uninstalling |lazy.nvim-uninstalling| - Other Neovim Plugin Managers in Lua|lazy.nvim-other-neovim-plugin-managers-in-lua| @@ -508,17 +508,26 @@ Example: - any lua file in `~/.config/nvim/lua/plugins/.lua` will be automatically merged in the main plugin spec -DIFFERENCES WITH PACKER *lazy.nvim-differences-with-packer* +MIGRATION GUIDE *lazy.nvim-migration-guide* + +PACKER.NVIM ~ -- **Plugin Spec**: - - `setup` => `init` - - `requires` => `dependencies` - - `as` => `name` - - `opt` => `lazy` - - `run` => `build` - - `lock` => `pin` - - `module` is auto-loaded. No need to specify +- `setup` `init` +- `requires` `dependencies` +- `as` `name` +- `opt` `lazy` +- `run` `build` +- `lock` `pin` +- `module` is auto-loaded. No need to specify + + +PAQ-NVIM ~ + + +- `as` `name` +- `opt` `lazy` +- `run` `build` UNINSTALLING *lazy.nvim-uninstalling*