How to order a taxonomy’s terms numerically, from lowest to highest using get_terms

I have a plugin, Custom Taxonomy Sort, that allows you to sort taxonomy terms in any order that you might want. After installing the plugin, there will be an order field for each term. It will save these values as integers and will properly sort your taxonomy terms. By default, it will use the order you specify to sort the terms. It also enables a new value for sort the orderby parameter, “custom_sort”. You would be able to do something like:

<?php $terms = get_terms('taxonomy', 'orderby=custom_sort'); ?>