docs: added my dots to the examples

This commit is contained in:
Folke Lemaitre 2022-12-18 14:28:49 +01:00
parent c88ad91e31
commit 628d421c27
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 11 additions and 0 deletions

View File

@ -135,6 +135,17 @@ The `version` property supports [Semver](https://semver.org/) ranges:
> You can set `config.defaults.version = "*"` to install the latest stable
> 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