Replies: 1 comment 1 reply
-
This is an interesting use case! I think you should be able to hack this in reasonably easily, but I will admit that Right now, I think you could do this by:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Thanks for your work on this awesome plugin manager, which works great!
I moved my config to a plugin so that it is super portable to any nvim install, and I would like to be able to have a single
:PackerSync
install both my plugin and then any plugins that it specifies. Is that possible? I currently have to install, then close nvim, then reopen and sync again. After this, I have all of the plugins I expect.Here is my current configuration:
https://github.com/brandoncc/nvim-config-as-plugin/blob/main/lua/brandoncc/lv/lv-config.lua (this is the plugin that specifies other plugins)
https://github.com/ChristianChiarulli/LunarVim/blob/master/lua/plugins.lua#L250-L253 (this is where LunarVim brings in my plugin)
This is the configuration I have that sets my LunarVim user_plugins and results in my plugin coming in:
I have tried things like this:
Which successfully ran sync twice, but the sub-plugins were not seen/installed.
Am I trying to do something that is impossible?
Beta Was this translation helpful? Give feedback.
All reactions