mirror of https://github.com/folke/lazy.nvim.git
docs: moved my dots to structuring plugins
This commit is contained in:
parent
9916318522
commit
1fa2d87ae2
16
README.md
16
README.md
|
@ -148,15 +148,6 @@ version of plugins that support Semver.
|
|||
|
||||
### 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:
|
||||
|
||||
<!-- spec:start -->
|
||||
|
||||
```lua
|
||||
|
@ -470,6 +461,13 @@ return {
|
|||
|
||||
- any lua file in `~/.config/nvim/lua/plugins/*.lua` will be automatically merged in the main plugin spec
|
||||
|
||||
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.
|
||||
|
||||
## ⚡ Performance
|
||||
|
||||
## 📦 Migration Guide
|
||||
|
|
Loading…
Reference in New Issue