author | Fabien Ninoles <fninoles@genvidtech.com> |
Mon, 23 Jan 2017 07:21:14 -0500 | |
changeset 19 | aa5a250ec992 |
parent 1 | a234a7579958 |
permissions | -rw-r--r-- |
1 | 1 |
;;;_ EShell configuration |
2 |
||
3 |
(setenv "EDITOR" "gnuclient") |
|
4 |
(setenv "VISUAL" "gnuclient") |
|
5 |
(setenv "DEBIAN_FRONTEND" "editor") |
|
6 |
(defun local-init-eshell () |
|
7 |
"Local customization of eshell." |
|
8 |
(defsubst eshell/make (&rest args) |
|
9 |
"run make in lisp compile." |
|
10 |
(compile (join (push "make" args) " ")))) |
|
11 |
||
12 |
(provide 'my-shell) |