It seems that vim auto-indents multi-line attributes as follows: ```html <img src="test.png" width="10" height="10" alt="test"> ``` I'd prefer if they aligned on the first attribute: ```html <img src="test.png" width="10" height="10" alt="test"> ``` I'm not sure if this behavior is coming from this plugin or somewhere else, but I'm wondering if it's possible to achieve the second option somehow.