You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/lazy.nvim.txt
+8-13
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,6 @@ Table of Contents *lazy.nvim-table-of-contents*
15
15
- 🪲 Debug |lazy.nvim-🪲-debug|
16
16
- Startup Sequence |lazy.nvim-startup-sequence|
17
17
- Structuring Your Plugins |lazy.nvim-structuring-your-plugins|
18
-
- Performance |lazy.nvim-performance|
19
18
- Migration Guide |lazy.nvim-migration-guide|
20
19
- Uninstalling |lazy.nvim-uninstalling|
21
20
- Other Neovim Plugin Managers in Lua|lazy.nvim-other-neovim-plugin-managers-in-lua|
@@ -182,17 +181,6 @@ of plugins that support Semver.
182
181
183
182
EXAMPLES ~
184
183
185
-
My personal dots:
186
-
187
-
188
-
- init.lua <https://github.com/folke/dot/blob/master/config/nvim/init.lua> where I require `config.lazy`
189
-
- config.lazy <https://github.com/folke/dot/blob/master/config/nvim/lua/config/lazy.lua> where I bootstrap and setup **lazy.nvim**
190
-
- config.plugins <https://github.com/folke/dot/blob/master/config/nvim/lua/config/plugins.lua> is my main plugin config module
191
-
- Any submodule of config.plugins (submodules) <https://github.com/folke/dot/tree/master/config/nvim/lua/config/plugins> will be automatically loaded as well.
192
-
193
-
194
-
Other examples:
195
-
196
184
>lua
197
185
return {
198
186
-- the colorscheme should be available when starting Neovim
@@ -516,7 +504,14 @@ Example:
516
504
- any lua file in `~/.config/nvim/lua/plugins/.lua` will be automatically merged in the main plugin spec
517
505
518
506
519
-
PERFORMANCE *lazy.nvim-performance*
507
+
For a real-life example, you can check my personal dots:
508
+
509
+
510
+
- init.lua <https://github.com/folke/dot/blob/master/config/nvim/init.lua> where I require `config.lazy`
511
+
- config.lazy <https://github.com/folke/dot/blob/master/config/nvim/lua/config/lazy.lua> where I bootstrap and setup **lazy.nvim**
512
+
- config.plugins <https://github.com/folke/dot/blob/master/config/nvim/lua/config/plugins.lua> is my main plugin config module
513
+
- Any submodule of config.plugins (submodules) <https://github.com/folke/dot/tree/master/config/nvim/lua/config/plugins> will be automatically loaded as well.
0 commit comments