Awesome plugin bro! and thx for the tip!
>>>
Set the default category for new users with the Author Category plugin:
add_action(‘user_register’,’set_default_cat_for_user’);
function set_default_cat_for_user($user_id){
$default_category_id = 2; //change 2 with your default category id
update_user_meta( $user_id, ‘_author_cat’,$default_category_id);
}