Summary
Allow users to add personal Neovim plugins without forking the repo. A nvim/lua/plugins/user.lua file (gitignored) could be loaded by lazy.nvim alongside the bundled plugins.
Proposed approach
- Add
nvim/lua/plugins/user.lua to .gitignore
- Update
nvim/lua/config/lazy.lua to load from plugins/user if the file exists
- Document in README
This lets users extend the config without merge conflicts on git pull.
Summary
Allow users to add personal Neovim plugins without forking the repo. A
nvim/lua/plugins/user.luafile (gitignored) could be loaded by lazy.nvim alongside the bundled plugins.Proposed approach
nvim/lua/plugins/user.luato.gitignorenvim/lua/config/lazy.luato load fromplugins/userif the file existsThis lets users extend the config without merge conflicts on
git pull.