mirror of https://github.com/folke/lazy.nvim.git
chore(build): auto-generate vimdoc
This commit is contained in:
parent
dfe8a65d7d
commit
48a596e1d4
|
@ -15,7 +15,6 @@ Table of Contents *lazy.nvim-table-of-contents*
|
||||||
- 🪲 Debug |lazy.nvim-🪲-debug|
|
- 🪲 Debug |lazy.nvim-🪲-debug|
|
||||||
- Startup Sequence |lazy.nvim-startup-sequence|
|
- Startup Sequence |lazy.nvim-startup-sequence|
|
||||||
- Structuring Your Plugins |lazy.nvim-structuring-your-plugins|
|
- Structuring Your Plugins |lazy.nvim-structuring-your-plugins|
|
||||||
- Performance |lazy.nvim-performance|
|
|
||||||
- Migration Guide |lazy.nvim-migration-guide|
|
- Migration Guide |lazy.nvim-migration-guide|
|
||||||
- Uninstalling |lazy.nvim-uninstalling|
|
- Uninstalling |lazy.nvim-uninstalling|
|
||||||
- Other Neovim Plugin Managers in Lua|lazy.nvim-other-neovim-plugin-managers-in-lua|
|
- Other Neovim Plugin Managers in Lua|lazy.nvim-other-neovim-plugin-managers-in-lua|
|
||||||
|
@ -182,17 +181,6 @@ of plugins that support Semver.
|
||||||
|
|
||||||
EXAMPLES ~
|
EXAMPLES ~
|
||||||
|
|
||||||
My personal dots:
|
|
||||||
|
|
||||||
|
|
||||||
- init.lua <https://github.com/folke/dot/blob/master/config/nvim/init.lua> where I require `config.lazy`
|
|
||||||
- config.lazy <https://github.com/folke/dot/blob/master/config/nvim/lua/config/lazy.lua> where I bootstrap and setup **lazy.nvim**
|
|
||||||
- config.plugins <https://github.com/folke/dot/blob/master/config/nvim/lua/config/plugins.lua> is my main plugin config module
|
|
||||||
- Any submodule of config.plugins (submodules) <https://github.com/folke/dot/tree/master/config/nvim/lua/config/plugins> will be automatically loaded as well.
|
|
||||||
|
|
||||||
|
|
||||||
Other examples:
|
|
||||||
|
|
||||||
>lua
|
>lua
|
||||||
return {
|
return {
|
||||||
-- the colorscheme should be available when starting Neovim
|
-- 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
|
- 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 <https://github.com/folke/dot/blob/master/config/nvim/init.lua> where I require `config.lazy`
|
||||||
|
- config.lazy <https://github.com/folke/dot/blob/master/config/nvim/lua/config/lazy.lua> where I bootstrap and setup **lazy.nvim**
|
||||||
|
- config.plugins <https://github.com/folke/dot/blob/master/config/nvim/lua/config/plugins.lua> is my main plugin config module
|
||||||
|
- Any submodule of config.plugins (submodules) <https://github.com/folke/dot/tree/master/config/nvim/lua/config/plugins> will be automatically loaded as well.
|
||||||
|
|
||||||
|
|
||||||
MIGRATION GUIDE *lazy.nvim-migration-guide*
|
MIGRATION GUIDE *lazy.nvim-migration-guide*
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue