;;; init-eshell.el --- configure eshell -*- lexical-binding: t -*- ;; Author: Franck Cuny ;;; Commentary: ;; configure eshell ;;; Code: (use-package eshell :commands (eshell eshell-command) :bind (("C-r" . consult-history)) :custom (eshell-hist-ignoredups t) (eshell-history-size 50000) (eshell-ls-dired-initial-args '("-h")) (eshell-ls-initial-args "-h") (eshell-ls-exclude-regexp "~\\'") (eshell-save-history-on-exit t) (eshell-stringify-t nil) (eshell-term-name "ansi")) (provide 'init-eshell) ;;; init-eshell.el ends here