summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2023-12-11 21:01:27 -0500
committerKjetil Orbekk <kj@orbekk.com>2023-12-11 21:01:27 -0500
commit437fbb7355ee8a1d1bfd7025e074f1cc6cc59f82 (patch)
tree0568eb6d3d6fc82e6cf12e44d6d17ebee7bcbde7
parent2bdbd1ef5bccc872961a87075e7a7fbd15aaf3b9 (diff)
update
-rw-r--r--emacs/.config/emacs-kj/lisp/kj-eshell.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/emacs/.config/emacs-kj/lisp/kj-eshell.el b/emacs/.config/emacs-kj/lisp/kj-eshell.el
index e383c6b..cc96553 100644
--- a/emacs/.config/emacs-kj/lisp/kj-eshell.el
+++ b/emacs/.config/emacs-kj/lisp/kj-eshell.el
@@ -9,11 +9,15 @@
eshell-scroll-to-bottom-on-input 'all
eshell-hist-ignoredups t
eshell-destroy-buffer-when-process-dies t
+ eshell-review-quick-commands nil
+ eshell-smart-space-goes-to-end t
eshell-error-if-no-glob t)
(setq tramp-remote-path '(tramp-own-remote-path))
+ (add-to-list 'eshell-modules-list 'eshell-smart)
+
(add-to-list 'eshell-modules-list 'eshell-tramp)
- (add-to-list 'eshell-load-hook #'kj/on-eshell-load)
+ (add-to-list 'eshell-load-hook 'kj/on-eshell-load)
(add-hook 'eshell-mode-hook 'visual-line-mode))