From 48a596e1d4f4253693e961222f85a25922dae598 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 20 Dec 2022 10:03:19 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/lazy.nvim.txt | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt index 0b23d64..cbb3bdb 100644 --- a/doc/lazy.nvim.txt +++ b/doc/lazy.nvim.txt @@ -15,7 +15,6 @@ 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| - - Performance |lazy.nvim-performance| - Migration Guide |lazy.nvim-migration-guide| - Uninstalling |lazy.nvim-uninstalling| - Other Neovim Plugin Managers in Lua|lazy.nvim-other-neovim-plugin-managers-in-lua| @@ -182,17 +181,6 @@ of plugins that support Semver. EXAMPLES ~ -My personal dots: - - -- init.lua where I require `config.lazy` -- config.lazy where I bootstrap and setup **lazy.nvim** -- config.plugins is my main plugin config module -- Any submodule of config.plugins (submodules) will be automatically loaded as well. - - -Other examples: - >lua return { -- the colorscheme should be available when starting Neovim @@ -516,7 +504,14 @@ Example: - any lua file in `~/.config/nvim/lua/plugins/.lua` will be automatically merged in the main plugin spec -PERFORMANCE *lazy.nvim-performance* +For a real-life example, you can check my personal dots: + + +- init.lua where I require `config.lazy` +- config.lazy where I bootstrap and setup **lazy.nvim** +- config.plugins is my main plugin config module +- Any submodule of config.plugins (submodules) will be automatically loaded as well. + MIGRATION GUIDE *lazy.nvim-migration-guide*