How to prevent tinyMCE editor to be loaded completely in Text Editor?

This is a working for me:

//Sets HTML as default editor
add_filter('wp_default_editor', create_function('', 'return "html";'));

When the page is loaded, it will always use text editor as default, removing extraneous buttons for tinyMCE.