From 628d421c27c70a42fe33058c196eb9e2d3790413 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sun, 18 Dec 2022 14:28:49 +0100 Subject: [PATCH] docs: added my dots to the examples --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 4ce6f2d..b19d35f 100644 --- a/README.md +++ b/README.md @@ -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: + ```lua