feature: Provide indication in :Lazy
modal that shows when local plugins are used vs not
#1802
Open
1 task done
Labels
enhancement
New feature or request
Did you check the docs?
Is your feature request related to a problem? Please describe.
Thanks for making this plugin!
lazy.nvim
has been incredibly easy to use and massively helpful in my development workflow.Feature Request
It seems like when you run
:Lazy
there are different colors that are supposed to indicate whether or not you are using a plugin locally or one downloaded from a remote source like GitHub. In my case, downloaded plugins have an orange circle and local ones have a pink circle.I think this is helpful, but I've noticed a couple issues with this:
dir
property setdir
points to a non-existent folder on your filesystemdir
property set in my plugin configuration, but comment out thedev = true
property, so I can use the remote version in most cases, but use my local version when I need to debug something (by uncommenting thedev = true
line.I would expect that the circle would be colored orange in this case, because I'm using the remote version of the plugin, but it still remains the "local" color, which I feel like it gives users the wrong idea that a local plugin is being used when it may not be.
Describe the solution you'd like
I think it would make more sense for:
dir
property of a plugin configurationdir
property points to an existent folderdev
property of a plugin configuration is set totrue
false
Describe alternatives you've considered
N/A
Additional context
The screenshot below shoes that the
codeium.vim
entry has a pink circle next to it, when I think it should be orange to indicate that this local plugin is not being used (in this case, because I havedev = false
for this plugin)The text was updated successfully, but these errors were encountered: