How do I sort taxonomy in taxonomy list?

Using the taxonomylist plugin. How would I sort these alphabetically by tag?

{% set taxlist = taxonomylist.get() %}

{% if taxlist %}

<span class="tags">
    {% for tax,value in taxlist[taxonomy] %}

        <a class="btn btn-default btn-xs" href="{{ base_url }}/notes/tag{{ config.system.param_sep }},{{ tax|e('url') }}">{{ tax }}</a>

    {% endfor %}
</span>
{% endif %}

Have you looked at the |sort_by_key filter? Docs Here

Thanks, I missed that section.