How to disable formatting

Please use this code in your functions.php

function tinymce_paste_as_text( $init ) {
      $init['paste_as_text'] = true;
      return $init;
    }

    add_filter('tiny_mce_before_init', 'tinymce_paste_as_text');

For details please follow link :

This will paste copied text in plain format