lisp/my-shell.el
author Fabien Ninoles <fabien@tzone.org>
Sun, 26 Oct 2014 15:43:07 -0400
changeset 6 8daa0d8b9a0e
parent 1 a234a7579958
permissions -rw-r--r--
New local geometry.

;;;_ 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)