Editing wp-config.php

Yes, the plugin can override it, use action, init with a function to disable it. for example

add_action(init,'my_disable_revision');

function my_disable_revision ()
{
 define( 'BP_DEFAULT_COMPONENT', 'profile' );
}