dired-x: Optional Installation File At Point

 
 2.2 Optional Installation File At Point
 =======================================
 
 If you choose to have ‘dired-x.el’ bind ‘dired-x-find-file’ over
 ‘find-file’ (SeeFind File At Point), then you will need to set
 ‘dired-x-hands-off-my-keys’.  To do this, either set it _before_
 ‘dired-x.el’ is loaded, or use ‘M-x customize-variable’, or call
 ‘dired-x-bind-find-file’ after changing the value.
 
      (add-hook 'dired-load-hook
                (lambda ()
                  ;; Bind dired-x-find-file.
                  (setq dired-x-hands-off-my-keys nil)
                  (load "dired-x")
                  ))