summaryrefslogtreecommitdiff
path: root/emacs/custom/fcuny-eshell.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/custom/fcuny-eshell.el')
-rw-r--r--emacs/custom/fcuny-eshell.el10
1 files changed, 9 insertions, 1 deletions
diff --git a/emacs/custom/fcuny-eshell.el b/emacs/custom/fcuny-eshell.el
index 6c268f0..6af78af 100644
--- a/emacs/custom/fcuny-eshell.el
+++ b/emacs/custom/fcuny-eshell.el
@@ -47,14 +47,22 @@ multiple eshell windows easier."
(use-package eshell
:hook ((eshell-mode . fcuny/eshell-mode-setup)
- (eshell-mode . fcuny/eshell-current-command-time-track))
+ (eshell-mode . fcuny/eshell-current-command-time-track)
+ (eshell-mode . eshell-smart-initialize))
:bind (("C-c e h" . fcuny/eshell-here))
+ :init
+ (require 'em-smart)
+ (require 'em-hist)
+ (require 'em-tramp)
:custom
(eshell-scroll-to-bottom-on-input 'all)
(eshell-error-if-no-glob t)
(eshell-hist-ignoredups t)
(eshell-save-history-on-exit t)
(eshell-prefer-lisp-functions nil)
+ (eshell-where-to-jump 'begin)
+ (eshell-review-quick-commands nil)
+ (eshell-smart-space-goes-to-end t)
(eshell-destroy-buffer-when-process-dies t))
(provide 'fcuny-eshell)