lisp/my-shell.el
author Fabien Ninoles <fabien@tzone.org>
Sat, 16 Apr 2016 12:28:11 -0400
changeset 16 b3c1a18fe12e
parent 1 a234a7579958
permissions -rw-r--r--
Comment the follow up behavior.

;;;_ EShell configuration

(setenv "EDITOR" "gnuclient")
(setenv "VISUAL" "gnuclient")
(setenv "DEBIAN_FRONTEND" "editor")
(defun local-init-eshell ()
  "Local customization of eshell."
  (defsubst eshell/make (&rest args)
    "run make in lisp compile."
    (compile (join (push "make" args) " "))))

(provide 'my-shell)