blob: 286e180c6040672ac82681cfb51a9b2f70131ce0 (
plain) (
tree)
|
|
;;; init-eshell.el --- configure eshell -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>
;;; Commentary:
;; configure eshell
;;; Code:
(use-package eshell
:commands (eshell eshell-command)
: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-save-history-on-exit t)
(eshell-stringify-t nil)
(eshell-term-name "ansi"))
(provide 'init-eshell)
;;; init-eshell.el ends here
|