diff -r df7496e40bee -r a234a7579958 lisp/my-shell.el --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lisp/my-shell.el Thu Oct 13 08:46:42 2011 -0400 @@ -0,0 +1,12 @@ +;;;_ 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) \ No newline at end of file