List Categories (wp_terms) and count posts

After struggling a little bit, I found a solution writing this:

<?php


$cat_args = array('orderby' => 'name', 'show_count' => '1', 'hierarchical' => '0','taxonomy' => 'here goes the taxonomy');?>
<ul>
<?php
        $cat_args['title_li'] = '';
        wp_list_categories(apply_filters('', $cat_args));
?>
        </ul>