Enqueue never runs

Be sure about the parameters wp_enqueue_style and wp_enqueue_script uses.(The parameters are not same for both )

wp_enqueue_style( $handle, $src, $deps, $ver, $media );

you are giving false,false,true for dependency,version and media which is a blunder mistake.If you are not sure about them, you can avoid them and if you want to following is an example

wp_register_style( 'custom-style', 
    get_template_directory_uri() . '/css/custom-style.css', 
    array(), 'version1', 'all' );

and in wp_enqueue_script you need to change $deps(dependency) parameter to array() instead of false