lisp/my-shell.el
author Fabien Ninoles <fninoles@genvidtech.com>
Mon, 23 Jan 2017 07:21:14 -0500
changeset 19 aa5a250ec992
parent 1 a234a7579958
permissions -rw-r--r--
Fix comment on line AE08.

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