I\'m trying Emacs. I would like to set colors for Eshell. I tried that first with set-foreground-color. But it affects my other modes too.
(add-hook \'eshell-m
Here is a link to the documentation regarding remapping faces: http://www.gnu.org/software/emacs/manual/html_node/elisp/Face-Remapping.html
(defun my-eshell-mode-faces () (face-remap-add-relative 'default '(:foreground "#BD8700"))) (add-hook 'eshell-mode-hook 'my-eshell-mode-faces)