Override comments.php template with plugin

The comments_template hook:

add_filter( 'comments_template', function ( $template ) {
    return '/absolute/path/to/your/comments.php';
});