all repos — nixfiles @ 833cdbc654cc90cb9c922fe80a9d9dcfb635e6e2

System and user configuration, managed by nix and home-manager

Emacs: use em-smart package to return to previous command in eshell sessions
Alan Pearce alan@alanpearce.co.uk
Tue, 28 May 2013 19:44:06 +0100
commit

833cdbc654cc90cb9c922fe80a9d9dcfb635e6e2

parent

83923895305252c639019ffa2e0270f5cc54f614

1 files changed, 8 insertions(+), 1 deletions(-)

jump to
M emacs/init.elemacs/init.el
@@ -712,7 +712,14 @@ ;;;; Shells & REPLs 
 (use-package eshell
   :defer t
-  :config (setq eshell-directory-name "~/.emacs.d/eshell"))
+  :config (progn
+            (setq eshell-directory-name "~/.emacs.d/eshell")
+            (use-package em-smart
+              :init (progn
+                      (setq eshell-where-to-jump 'begin
+                            eshell-review-quick-commands nil
+                            eshell-smart-space-goes-to-end t)
+                      (eshell-smart-initialize)))))
 
 (use-package shell
   :defer t