# File lib/guard/interactor.rb, line 108
    def add_hooks
      Pry.config.hooks.add_hook :when_started, :load_guard_rc do
        (self.class.options[:guard_rc] || GUARD_RC).tap do |p|
          load p if File.exist?(File.expand_path(p))
        end
      end

      if stty_exists?
        Pry.config.hooks.add_hook :after_eval, :restore_visibility do
          system('stty echo')
        end
      end
    end