Skip to content

Commit

Permalink
Fix the eshell configuration. In particular, remove the hard-coded
Browse files Browse the repository at this point in the history
color setting that messes up any color scheme.
  • Loading branch information
Konrad Hinsen authored and eschulte committed Nov 2, 2010
1 parent 5b58ad6 commit 9c61b51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions starter-kit-eshell.org
Expand Up @@ -13,14 +13,14 @@ This is part of the [[file:starter-kit.org][Emacs Starter Kit]].

(eval-after-load 'esh-opt
'(progn
(require 'em-cmpl)
(require 'em-prompt)
(require 'em-term)
(require 'em-cmpl)
;; TODO: for some reason requiring this here breaks it, but
;; requiring it after an eshell session is started works fine.
;; (require 'eshell-vc)
(setenv "PAGER" "cat")
(set-face-attribute 'eshell-prompt nil :foreground "turquoise1")
; (set-face-attribute 'eshell-prompt nil :foreground "turquoise1")
(add-hook 'eshell-mode-hook ;; for some reason this needs to be a hook
'(lambda () (define-key eshell-mode-map "\C-a" 'eshell-bol)))
(add-to-list 'eshell-visual-commands "ssh")
Expand Down

0 comments on commit 9c61b51

Please sign in to comment.