How to add theme support for plugin templates?

Add the following code in your parent/ child theme functions.php

add_action('after_setup_theme', function() {
	add_theme_support( 'rtcl' );
});