summary refs log tree commit diff
path: root/config/init-eshell.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config/init-eshell.el19
1 files changed, 2 insertions, 17 deletions
diff --git a/config/init-eshell.el b/config/init-eshell.el
index 286e180..856b8ea 100644
--- a/config/init-eshell.el
+++ b/config/init-eshell.el
@@ -9,28 +9,13 @@
 
 (use-package eshell
   :commands (eshell eshell-command)
+  :bind (("C-r" . consult-history))
   :custom
-  (eshell-directory-name (emacs-path "eshell"))
   (eshell-hist-ignoredups t)
   (eshell-history-size 50000)
   (eshell-ls-dired-initial-args '("-h"))
-  (eshell-ls-exclude-regexp "~\\'")
   (eshell-ls-initial-args "-h")
-  (eshell-modules-list
-   '(eshell-alias
-     eshell-basic
-     eshell-cmpl
-     eshell-dirs
-     eshell-glob
-     eshell-hist
-     eshell-ls
-     eshell-pred
-     eshell-prompt
-     eshell-rebind
-     eshell-script
-     eshell-term
-     eshell-unix
-     eshell-xtra))
+  (eshell-ls-exclude-regexp "~\\'")
   (eshell-save-history-on-exit t)
   (eshell-stringify-t nil)
   (eshell-term-name "ansi"))