Zend certified PHP/Magento developer

around plugin overriding other before plugins

In vendor module i have around plugin for some method. I’d like to add before plugin for this method but it looks like this around from vendor overriding all other plugins (before and after). This vendor plugin does not call proceed(). Is there any way to add before plugin in this case?

I know that I can just disable vendor plugin in my di.xml and add my own around plugin build from this vendor code and mine code. Or add preference for this vendor plugin. Or maybe plugin for plugin beforeAround… ? But it all looks strange I think. Or maybe not?

SOLVED:
I added (override) in my di.xml lower sorOrder for this vendor plugin and higher at my plugin. Now it works ЁЯЩВ .