From 1fa2d87ae2f44c83597081ac3d57a8a960252e26 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Tue, 20 Dec 2022 11:01:43 +0100 Subject: [PATCH] docs: moved my dots to structuring plugins --- README.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index d07c2ae..95f9f72 100644 --- a/README.md +++ b/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: - ```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